ec119b774a
The Identity table read should be OK given the menu is etagged and the untenanted page should be a rarity.
8 lines
160 B
Ruby
8 lines
160 B
Ruby
class My::MenusController < ApplicationController
|
|
include FilterScoped
|
|
|
|
def show
|
|
fresh_when etag: [ @user_filtering, Current.identity_token ]
|
|
end
|
|
end
|