Class: Eco::API::UseCases::DefaultCases::TagTree
- Inherits:
-
Common::Loaders::UseCase
- Object
- Common::Loaders::Base
- Common::Loaders::CaseBase
- Common::Loaders::UseCase
- Eco::API::UseCases::DefaultCases::TagTree
- Defined in:
- lib/eco/api/usecases/default_cases/tagtree_case.rb
Instance Attribute Summary
Attributes inherited from Common::Loaders::CaseBase
Instance Method Summary collapse
Methods inherited from Common::Loaders::UseCase
Methods inherited from Common::Loaders::CaseBase
Methods inherited from Common::Loaders::Base
<=>, created_at, #initialize, #name, set_created_at!
Methods included from Common::ClassHelpers
#class_resolver, #descendants, #descendants?, #inheritable_attrs, #inheritable_class_vars, #inherited, #instance_variable_name, #new_class, #resolve_class, #to_constant
Constructor Details
This class inherits a constructor from Eco::API::Common::Loaders::UseCase
Instance Method Details
#main(session, options, usecase) ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/eco/api/usecases/default_cases/tagtree_case.rb', line 5 def main(session, , usecase) puts "Use case still in development" exit [:end_get] = false operations.keys.each do |key| process(key) end end |
#process(key) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/eco/api/usecases/default_cases/tagtree_case.rb', line 14 def process(key) case key when :diff require_graphql_auth! when :show_backend require_graphql_auth! else logger.warn("Operation #{key} not supported") end end |