Files
adamantium/app/repos/movie_repo.rb
2023-05-02 20:29:09 +10:00

15 lines
306 B
Ruby

module Adamantium
module Repos
class MovieRepo < Adamantium::Repo[:movies]
commands :create
def listing
movies.order(Sequel.lit("year desc")).to_a
end
def by_title_and_year(title:, year:)
movies.where(title: title, year: year).one
end
end
end
end