Added admin:create rake task
This commit is contained in:
parent
6a6496eedf
commit
cb3b79407d
1
Gemfile
1
Gemfile
|
@ -65,6 +65,7 @@ gem 'strong_parameters' # remove when we upgrade to Rails 4
|
|||
gem 'therubyracer', require: 'v8'
|
||||
gem 'thin'
|
||||
gem 'diffy', require: false
|
||||
gem 'highline', require: false
|
||||
|
||||
# Gem that enables support for plugins. It is required.
|
||||
gem 'discourse_plugin', path: 'vendor/gems/discourse_plugin'
|
||||
|
|
|
@ -503,6 +503,7 @@ DEPENDENCIES
|
|||
guard-rspec
|
||||
guard-spork
|
||||
has_ip_address
|
||||
highline
|
||||
hiredis
|
||||
image_optim
|
||||
image_sorcery
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
desc "Creates a forum administrator"
|
||||
task "admin:create" => :environment do
|
||||
require 'highline/import'
|
||||
begin
|
||||
admin = User.new
|
||||
admin.email = ask("Email:")
|
||||
admin.username = "admin"
|
||||
begin
|
||||
password = ask("Password:") {|q| q.echo = false}
|
||||
password_confirmation = ask("Repeat password:") {|q| q.echo = false}
|
||||
end while password != password_confirmation
|
||||
admin.password = password
|
||||
# admin.email_confirmed = true
|
||||
saved = admin.save
|
||||
if !saved
|
||||
puts admin.errors.full_messages.join("\n")
|
||||
next
|
||||
end
|
||||
end while !saved
|
||||
admin.grant_admin!
|
||||
admin.change_trust_level!(TrustLevel.levels.max_by{|k, v| v}[0])
|
||||
admin.email_tokens.update_all confirmed: true
|
||||
end
|
Loading…
Reference in New Issue