Module: Ibrain::Auth
- Defined in:
- lib/ibrain/auth/version.rb,
lib/ibrain/auth/devise.rb,
lib/ibrain/auth/engine.rb,
app/models/ibrain/auth/user.rb,
app/graphql/ibrain/auth/types/input/sign_in_input.rb,
app/graphql/ibrain/auth/types/input/sign_up_input.rb,
lib/generators/ibrain/auth/install/install_generator.rb,
app/graphql/ibrain/auth/types/input/generate_firebase_token_input.rb
Overview
frozen_string_literal: true
Defined Under Namespace
Modules: Mutations, Types
Classes: ConfirmationsController, Engine, FailureApp, InstallGenerator, PasswordsController, RegistrationsController, SessionsController, UnlocksController, User
Constant Summary
collapse
- VERSION =
'0.2.7'
Class Method Summary
collapse
Class Method Details
.config {|Ibrain::Auth::Config| ... } ⇒ Object
12
13
14
|
# File 'lib/ibrain/auth/devise.rb', line 12
def self.config(&_block)
yield(Ibrain::Auth::Config)
end
|
.ibrain_auth_gem_version ⇒ Object
17
18
19
|
# File 'lib/ibrain/auth/version.rb', line 17
def self.ibrain_auth_gem_version
Gem::Version.new(ibrain_auth_version)
end
|
.ibrain_auth_version ⇒ Object
9
10
11
|
# File 'lib/ibrain/auth/version.rb', line 9
def self.ibrain_auth_version
VERSION
end
|
.load_defaults(version) ⇒ Object
Load the same version defaults for all available Ibrain components
8
9
10
|
# File 'lib/ibrain/auth/devise.rb', line 8
def self.load_defaults(version)
Ibrain::Auth::Config.load_defaults(version)
end
|
.previous_ibrain_auth_minor_version ⇒ Object
13
14
15
|
# File 'lib/ibrain/auth/version.rb', line 13
def self.previous_ibrain_auth_minor_version
'0.2.6'
end
|