Skip to content
Snippets Groups Projects
Unverified Commit 36e47a31 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Enforce order on authorized applications page (#7587)

Fix #7586
parent 4eeda677
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ class Settings::ApplicationsController < ApplicationController
before_action :prepare_scopes, only: [:create, :update]
def index
@applications = current_user.applications.page(params[:page])
@applications = current_user.applications.order(id: :desc).page(params[:page])
end
def new
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment