25 lines
537 B
Ruby
25 lines
537 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require_relative '../../config/boot'
|
||
|
require_relative '../../config/environment'
|
||
|
require_relative 'cli_helper'
|
||
|
|
||
|
module GabSocial
|
||
|
class RegistrationsCLI < Thor
|
||
|
def self.exit_on_failure?
|
||
|
true
|
||
|
end
|
||
|
|
||
|
desc 'open', 'Open registrations'
|
||
|
def open
|
||
|
Setting.registrations_mode = 'open'
|
||
|
say('OK', :green)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class SettingsCLI < Thor
|
||
|
desc 'registrations SUBCOMMAND ...ARGS', 'Manage state of registrations'
|
||
|
subcommand 'registrations', RegistrationsCLI
|
||
|
end
|
||
|
end
|