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



136
137
138
139
140
141
142
143
144
# File 'lib/belt/route_dsl.rb', line 136

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