mohnish/money

View on GitHub
app/controllers/api/v1/repeat_intervals_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  module V1
    class RepeatIntervalsController < BaseController
      before_action :doorkeeper_authorize!

      def index
        @repeat_intervals = RepeatInterval.all
        render status: :ok
      end
    end
  end
end