You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
612 B
27 lines
612 B
6 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
require_relative '../../config/boot'
|
||
|
require_relative '../../config/environment'
|
||
|
require_relative 'cli_helper'
|
||
|
|
||
|
module Mastodon
|
||
|
class RegistrationsCLI < Thor
|
||
|
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
|