12 lines
260 B
Ruby
12 lines
260 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|