6 lines
124 B
Ruby
6 lines
124 B
Ruby
class WowCharactersController < ProtectedController
|
|
def index
|
|
@characters = current_user.wow_characters.all
|
|
end
|
|
end
|