12 lines
273 B
Ruby
12 lines
273 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TemplatesRestoreController < ApplicationController
|
|
load_and_authorize_resource :template
|
|
|
|
def create
|
|
@template.update!(deleted_at: nil)
|
|
|
|
redirect_to template_path(@template), notice: 'Template has been unarchived'
|
|
end
|
|
end
|