blob: 1d8c542dbe78786a084e291b0af544db43464b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module V1
class IdentitiesController < ApiController
before_filter :token_authenticate
before_filter :require_monitor
def show
@identity = Identity.find_by_address(params[:id])
respond_with @identity
end
end
end
|