forgeplus/app/controllers/api/v1/system_notifications_contro...

8 lines
247 B
Ruby

class Api::V1::SystemNotificationsController < Api::V1::BaseController
def index
@system_notifications = SystemNotification.where(is_top: true)
@system_notifications = kaminary_select_paginate(@system_notifications)
end
end