Module: OmniAuth::Identity::Model::InstanceSaveApi
- Defined in:
- lib/omniauth/identity/model.rb
Instance Method Summary collapse
-
#save(**_options, &_block) ⇒ Model
abstract
Persists a new Identity object to the ORM.
Instance Method Details
#save(**_options, &_block) ⇒ Model
This method is abstract.
Persists a new Identity object to the ORM. Default raises an error. Override as needed per ORM. This base version’s arguments are modeled after ActiveModel
since it is a pattern many ORMs follow
93 94 95 |
# File 'lib/omniauth/identity/model.rb', line 93 def save(**, &_block) raise NotImplementedError end |