Class: NewStoreApi::ApplicationEnum
- Inherits:
-
Object
- Object
- NewStoreApi::ApplicationEnum
- Defined in:
- lib/new_store_api/models/application_enum.rb
Overview
Abbreviation of the application this permission belongs to.
Constant Summary collapse
- APPLICATION_ENUM =
[ # TODO: Write general description for NOM NOM = 'nom'.freeze, # TODO: Write general description for AA AA = 'aa'.freeze, # TODO: Write general description for MCP MCP = 'mcp'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.from_value(value, default_value = NOM) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/new_store_api/models/application_enum.rb', line 26 def self.from_value(value, default_value = NOM) return default_value if value.nil? str = value.to_s.strip case str.downcase when 'nom' then NOM when 'aa' then AA when 'mcp' then MCP else default_value end end |
.validate(value) ⇒ Object
20 21 22 23 24 |
# File 'lib/new_store_api/models/application_enum.rb', line 20 def self.validate(value) return false if value.nil? APPLICATION_ENUM.include?(value) end |