14 lines
195 B
Ruby
14 lines
195 B
Ruby
|
module Connections
|
||
|
class DeletedDossiersConnection < CursorConnection
|
||
|
private
|
||
|
|
||
|
def order_column
|
||
|
:deleted_at
|
||
|
end
|
||
|
|
||
|
def order_table
|
||
|
:deleted_dossiers
|
||
|
end
|
||
|
end
|
||
|
end
|