Add IMDB ID to movies
This commit is contained in:
19
slices/admin/repos/movie_repo.rb
Normal file
19
slices/admin/repos/movie_repo.rb
Normal file
@@ -0,0 +1,19 @@
|
||||
module Admin
|
||||
module Repos
|
||||
class MovieRepo < Adamantium::Repo[:movies]
|
||||
commands :create
|
||||
|
||||
def by_title_and_year(title:, year:)
|
||||
movies.where(title: title, year: year).one
|
||||
end
|
||||
|
||||
def listing
|
||||
movies.order(Sequel.lit("year desc")).to_a
|
||||
end
|
||||
|
||||
def update(id, attrs)
|
||||
movies.where(id: id).update(attrs)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user