mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
11 lines
293 B
Ruby
11 lines
293 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DashboardsController < ApplicationController
|
|
include TeamsHelper
|
|
|
|
before_action :switch_team_with_param, only: :show
|
|
|
|
def show
|
|
@my_module_status_flows = MyModuleStatusFlow.all.preload(my_module_statuses: :my_module_status_consequences)
|
|
end
|
|
end
|