# frozen_string_literal: true class Characters::RankingsController < ApplicationController skip_before_action :authenticate_user! def index @character = Character.find(params[:character_id]) end end