class ArticleStatusesController < ApplicationController access_control do allow logged_in end def index @article_statuses = ArticleStatus.paginate_by_user_id(current_user, :page => params[:page], :order => 'updated_at DESC') end end