mirror of
https://github.com/docusealco/docuseal.git
synced 2026-08-07 07:14:43 +00:00
8 lines
153 B
Ruby
8 lines
153 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DashboardController < ApplicationController
|
|
def index
|
|
@templates = current_account.templates.active
|
|
end
|
|
end
|