blob: bbae9fc7a51c32aab1337289d49d3ffeb6bf5cd8 (
plain)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
class Characters::RankingsController < ApplicationController
skip_before_action :authenticate_user!
def index
@character = Character.find(params[:character_id])
end
end
|