mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 04:06:53 +08:00
7 lines
216 B
Ruby
7 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DashboardsController < ApplicationController
|
|
def show
|
|
@my_module_status_flows = MyModuleStatusFlow.all.preload(my_module_statuses: :my_module_status_consequences)
|
|
end
|
|
end
|