2018-10-04 10:05:54 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require_relative '../../config/boot'
|
|
|
|
require_relative '../../config/environment'
|
|
|
|
require_relative 'cli_helper'
|
|
|
|
|
|
|
|
module Mastodon
|
|
|
|
class RegistrationsCLI < Thor
|
2018-10-25 10:05:33 -04:00
|
|
|
def self.exit_on_failure?
|
|
|
|
true
|
|
|
|
end
|
2018-10-27 16:56:16 -04:00
|
|
|
|
2018-10-04 10:05:54 -04:00
|
|
|
desc 'open', 'Open registrations'
|
|
|
|
def open
|
|
|
|
Setting.open_registrations = true
|
|
|
|
say('OK', :green)
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'close', 'Close registrations'
|
|
|
|
def close
|
|
|
|
Setting.open_registrations = false
|
|
|
|
say('OK', :green)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class SettingsCLI < Thor
|
|
|
|
desc 'registrations SUBCOMMAND ...ARGS', 'Manage state of registrations'
|
|
|
|
subcommand 'registrations', RegistrationsCLI
|
|
|
|
end
|
|
|
|
end
|