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.
14 lines
345 B
14 lines
345 B
# frozen_string_literal: true
|
|
|
|
class TemplatesRestoreController < ApplicationController
|
|
load_and_authorize_resource :template
|
|
|
|
def create
|
|
@template.update!(archived_at: nil)
|
|
|
|
WebhookUrls.enqueue_events(@template, 'template.updated')
|
|
|
|
redirect_to template_path(@template), notice: I18n.t('template_has_been_unarchived')
|
|
end
|
|
end
|