You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class Api::V1::Issues::StatuesController < Api::V1::BaseController
-
- before_action :require_public_and_member_above, only: [:index]
-
- # 状态列表
- def index
- @statues = IssueStatus.order("position asc")
- @statues = kaminary_select_paginate(@statues)
- end
- end
|