Files
docuseal/app/controllers/dashboard_controller.rb
T
2023-06-01 00:01:15 +03:00

8 lines
153 B
Ruby

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