Compare commits
2 commits
bec350e9f2
...
05c8e7f618
Author | SHA1 | Date | |
---|---|---|---|
05c8e7f618 | |||
ebb1be88a1 |
2 changed files with 22 additions and 19 deletions
|
@ -19,29 +19,27 @@ class ClosetHanger < ApplicationRecord
|
|||
}
|
||||
scope :trading, -> {
|
||||
ch = arel_table
|
||||
# sigh… our default-lists continue to be a pain
|
||||
cl = ClosetList.arel_table
|
||||
u = User.arel_table
|
||||
joins(:user, :list).where(
|
||||
# sigh… our default-lists continue to be a pain
|
||||
(
|
||||
joins(:user).left_outer_joins(:list).where(
|
||||
ch[:list_id].not_eq(nil).and(cl[:visibility].gteq(
|
||||
ClosetVisibility[:trading].id))
|
||||
).or(
|
||||
).or(where(
|
||||
(
|
||||
ch[:list_id].eq(nil).and(ch[:owned].eq(true))
|
||||
).and(
|
||||
u[:owned_closet_hangers_visibility].gteq(
|
||||
ClosetVisibility[:trading].id)
|
||||
)
|
||||
).or(
|
||||
)).or(where(
|
||||
(
|
||||
ch[:list_id].eq(nil).and(ch[:owned].eq(false))
|
||||
).and(
|
||||
u[:wanted_closet_hangers_visibility].gteq(
|
||||
ClosetVisibility[:trading].id)
|
||||
)
|
||||
)
|
||||
)
|
||||
))
|
||||
}
|
||||
scope :newest, -> { order(arel_table[:created_at].desc) }
|
||||
scope :owned_before_wanted, -> { order(arel_table[:owned].desc) }
|
||||
|
|
|
@ -35,6 +35,11 @@
|
|||
= list_zones @restricted_zones
|
||||
|
||||
#trade-hangers
|
||||
- if Time.now < Date.new(2024, 1, 26)
|
||||
%p
|
||||
✨⏳️
|
||||
%i We now only show recently-updated lists here!
|
||||
⏳️✨
|
||||
- [true, false].each do |owned|
|
||||
%p
|
||||
%strong
|
||||
|
|
Loading…
Reference in a new issue