education/classroom

View on GitHub
app/controllers/api/users_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module API
  class UsersController < API::ApplicationController
    include ActionController::Serialization

    def authenticated_user
      render json: current_user
    end
  end
end