otwarchive-sunsetarchive/app/controllers/collection_profile_controller.rb
2026-03-17 01:16:49 -04:00

13 lines
332 B
Ruby
Executable file

class CollectionProfileController < ApplicationController
before_action :load_collection
def show
unless @collection
flash[:error] = "What collection did you want to look at?"
redirect_to collections_path and return
end
@page_subtitle = t(".page_title", collection_title: @collection.title)
end
end