8 lines
131 B
Ruby
8 lines
131 B
Ruby
class IdentitiesController < ApplicationController
|
|
disallow_account_scope
|
|
|
|
def show
|
|
@identity = Current.identity
|
|
end
|
|
end
|