Class: Belt::MemberCollectionBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/belt/route_dsl.rb

Instance Method Summary collapse

Constructor Details

#initialize(gateway, prefix, inherited_tables, inherited_auth, inherited_controller = nil, inherited_lambda = nil) ⇒ MemberCollectionBuilder

rubocop:disable Metrics/ParameterLists



156
157
158
159
160
161
162
163
164
# File 'lib/belt/route_dsl.rb', line 156

def initialize(gateway, prefix, inherited_tables, inherited_auth, # rubocop:disable Metrics/ParameterLists
               inherited_controller = nil, inherited_lambda = nil)
  @gateway = gateway
  @prefix = prefix
  @inherited_tables = inherited_tables
  @inherited_auth = inherited_auth
  @inherited_controller = inherited_controller
  @inherited_lambda = inherited_lambda
end