mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-20 00:16:05 +01:00
14 lines
251 B
Ruby
14 lines
251 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module User::QuestionMethods
|
||
|
include CursorPaginatable
|
||
|
|
||
|
define_cursor_paginator :cursored_questions, :ordered_questions
|
||
|
|
||
|
def ordered_questions
|
||
|
questions
|
||
|
.order(:created_at)
|
||
|
.reverse_order
|
||
|
end
|
||
|
end
|