]> cat aescling's git repositories - mastodon.git/commitdiff
Add rake task for making someone into an admin
authorEugen Rochko <eugen@zeonfederated.com>
Mon, 13 Feb 2017 19:41:48 +0000 (20:41 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Mon, 13 Feb 2017 19:42:02 +0000 (20:42 +0100)
docs/Running-Mastodon/Administration-guide.md
lib/tasks/mastodon.rake

index 1b9dc8630a34ea121851530a4d04992ee6a6c3bf..af78f62355bc63e60807b6bed14afb9b89750d50 100644 (file)
@@ -1,8 +1,16 @@
 Administration guide
-=================
+====================
 
 So, you have a working Mastodon instance... now what?
 
+## Turning into an admin
+
+The following rake task:
+
+    rails mastodon:make_admin USERNAME=alice
+
+Would turn the local user "alice" into an admin.
+
 ## Administration web interface
 
 A user that is designated as `admin = TRUE` in the database is able to access a suite of administration tools:
@@ -20,9 +28,10 @@ Your site settings are stored in the `settings` database table, and editable thr
 
 You are able to set the following settings:
 
+- Site title
 - Contact username
 - Contact email
 - Site description
 - Site extended description
 
-You may wish to use the extended description (shown at https://yourmastodon.instance/about/more ) to display content guidelines or a user agreement (see https://mastodon.social/about/more for an example).
\ No newline at end of file
+You may wish to use the extended description (shown at https://yourmastodon.instance/about/more ) to display content guidelines or a user agreement (see https://mastodon.social/about/more for an example).
index 1b60bd1c9a21a9472176deedbbf8c2efba5514a9..8482d41247709c5b4c8f07cc657cb058fe745d1e 100644 (file)
@@ -1,6 +1,15 @@
 # frozen_string_literal: true
 
 namespace :mastodon do
+  task make_admin: :environment do
+    include RoutingHelper
+
+    user = Account.find_local(ENV.fetch('USERNAME')).user
+    user.update(admin: true)
+
+    puts "Congrats! #{user.account.username} is now an admin. \\o/\nNavigate to #{admin_settings_url} to get started"
+  end
+
   namespace :media do
     desc 'Removes media attachments that have not been assigned to any status for longer than a day'
     task clear: :environment do