Files
docuseal/app/controllers/dashboard_controller.rb
T
Alex Turchyn 97c462ead2 initial commit
2023-06-01 00:00:58 +03:00

8 lines
145 B
Ruby

# frozen_string_literal: true
class DashboardController < ApplicationController
def index
@flows = current_account.flows.active
end
end