You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a need to plan for more than one event at a time? I see that there is a plan afoot to provide this capability, but it has not yet been implemented, and I don't see any other open issue about this.
I see from the block diagram generated by the rails-erd gem (in my own personal branch in my fork) that the settings class has the parameter current_event_id. At the same time, a search of the code in this app shows that the current_event_id parameter is only mentioned in src/db/schema.rb and src/spec/controllers/sessions_controller_spec.rb. Thus, the current_event_id parameter does NOT appear to be used in the app.
At the moment, I see in src/app/models/event.rb that the current_event is defined as the very last event (when in ascending order by date).
I could set current_event in src/app/models/event.rb to refer to the current_event_id setting and default to the last event if that parameter is not provided. How should I proceed?
The text was updated successfully, but these errors were encountered:
Is there a need to plan for more than one event at a time? I see that there is a plan afoot to provide this capability, but it has not yet been implemented, and I don't see any other open issue about this.
I see from the block diagram generated by the rails-erd gem (in my own personal branch in my fork) that the settings class has the parameter current_event_id. At the same time, a search of the code in this app shows that the current_event_id parameter is only mentioned in src/db/schema.rb and src/spec/controllers/sessions_controller_spec.rb. Thus, the current_event_id parameter does NOT appear to be used in the app.
At the moment, I see in src/app/models/event.rb that the current_event is defined as the very last event (when in ascending order by date).
I could set current_event in src/app/models/event.rb to refer to the current_event_id setting and default to the last event if that parameter is not provided. How should I proceed?
The text was updated successfully, but these errors were encountered: