14 lines
222 B
Ruby
14 lines
222 B
Ruby
module Admin
|
|
module Repos
|
|
class WebmentionRepo < Adamantium::Repo[:webmentions]
|
|
commands update: :by_pk
|
|
|
|
def list_all
|
|
webmentions
|
|
.order(:id)
|
|
.to_a
|
|
end
|
|
end
|
|
end
|
|
end
|