Fix directory controller in glitch-soc
This commit is contained in:
parent
3d859a7c2b
commit
7dfd0c7995
1 changed files with 5 additions and 0 deletions
|
@ -7,6 +7,7 @@ class DirectoriesController < ApplicationController
|
|||
before_action :set_tag, only: :show
|
||||
before_action :set_tags
|
||||
before_action :set_accounts
|
||||
before_action :set_pack
|
||||
|
||||
def index
|
||||
render :index
|
||||
|
@ -18,6 +19,10 @@ class DirectoriesController < ApplicationController
|
|||
|
||||
private
|
||||
|
||||
def set_pack
|
||||
use_pack 'share'
|
||||
end
|
||||
|
||||
def set_tag
|
||||
@tag = Tag.discoverable.find_by!(name: params[:id].downcase)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue