8 lines
145 B
Ruby
8 lines
145 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DashboardController < ApplicationController
|
|
def index
|
|
@flows = current_account.flows.active
|
|
end
|
|
end
|