Ver a proveniência

Order by symbol value (#3077)

master
alpaca-tc há 7 anos
committed by Eugen Rochko
ascendente
cometimento
09ec6e504b
2 ficheiros alterados com 2 adições e 2 eliminações
  1. +1
    -1
      app/models/media_attachment.rb
  2. +1
    -1
      app/models/user.rb

+ 1
- 1
app/models/media_attachment.rb Ver ficheiro

@@ -53,7 +53,7 @@ class MediaAttachment < ApplicationRecord

scope :attached, -> { where.not(status_id: nil) }
scope :local, -> { where(remote_url: '') }
default_scope { order('id asc') }
default_scope { order(id: :asc) }

def local?
remote_url.blank?


+ 1
- 1
app/models/user.rb Ver ficheiro

@@ -48,7 +48,7 @@ class User < ApplicationRecord
validates :locale, inclusion: I18n.available_locales.map(&:to_s), unless: 'locale.nil?'
validates :email, email: true

scope :recent, -> { order('id desc') }
scope :recent, -> { order(id: :desc) }
scope :admins, -> { where(admin: true) }
scope :confirmed, -> { where.not(confirmed_at: nil) }



Carregando…
Cancelar
Guardar