Project

General

Profile

Download (747 Bytes) Statistics
| Branch: | Tag: | Revision:
module Api
module V2
class MailNotificationsController < V2::BaseController
include Api::Version2

before_filter :find_resource, :only => %w{show}

api :GET, "/mail_notifications/", N_("List of email notifications")
param_group :search_and_pagination, ::Api::V2::BaseController

def index
@mail_notifications = MailNotification.
authorized(:view_mail_notifications).
subscriptable.
search_for(*search_options).paginate(paginate_options)
end

api :GET, "/mail_notifications/:id/", N_("Show an email notification")
param :id, :identifier, :required => true, :desc => N_("Numerical ID or email notification name")

def show
end
end
end
end
(27-27/53)