mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
569 B
26 lines
569 B
# frozen_string_literal: true
|
|
|
|
class TemplatesPreferencesController < ApplicationController
|
|
load_and_authorize_resource :template
|
|
|
|
def show; end
|
|
|
|
def create
|
|
authorize!(:update, @template)
|
|
|
|
@template.preferences = @template.preferences.merge(template_params[:preferences])
|
|
@template.save!
|
|
|
|
head :ok
|
|
end
|
|
|
|
private
|
|
|
|
def template_params
|
|
params.require(:template).permit(
|
|
preferences: %i[bcc_completed request_email_subject request_email_body
|
|
documents_copy_email_subject documents_copy_email_body]
|
|
)
|
|
end
|
|
end
|