mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 19:56:04 +01:00
14 lines
268 B
Ruby
14 lines
268 B
Ruby
# frozen_string_literal: true
|
|
|
|
module User::InboxMethods
|
|
include CursorPaginatable
|
|
|
|
define_cursor_paginator :cursored_inbox, :ordered_inbox
|
|
|
|
def ordered_inbox
|
|
inboxes
|
|
.includes(:question, :user)
|
|
.order(:created_at)
|
|
.reverse_order
|
|
end
|
|
end
|