mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 16:38:18 +00:00
12 lines
209 B
Ruby
12 lines
209 B
Ruby
module Public
|
|
module API
|
|
module V1
|
|
class UsersController < ApplicationController
|
|
def me
|
|
@user = current_public_user
|
|
render :show
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|