10 lines
229 B
Ruby
10 lines
229 B
Ruby
class WowReputationsController < ProtectedController
|
|
def index
|
|
@pagy, @wow_reputations = pagy(WowReputation.non_meta_reputations, items: 20)
|
|
end
|
|
|
|
def show
|
|
@wow_reputation = WowReputation.find(params[:id])
|
|
end
|
|
end
|