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
334 B
14 lines
334 B
# frozen_string_literal: true
|
|
|
|
class SubmissionsUnarchiveController < ApplicationController
|
|
load_and_authorize_resource :submission
|
|
|
|
def create
|
|
authorize!(:update, @submission)
|
|
|
|
@submission.update!(archived_at: nil)
|
|
|
|
redirect_to submission_path(@submission), notice: I18n.t('submission_has_been_unarchived')
|
|
end
|
|
end
|