fga-gpp-mds/2017.1-Escola-X

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

Summary

Maintainability
A
0 mins
Test Coverage
class Api::NotificationsController < ApplicationController
  respond_to :json

  def index
    respond_with Notification.all
  end

  def show
    respond_with Notification.find(params[:id])
  end
end