export async function nowShowingController(request: Hapi.Request) {
  const movies = await Movie.find({ nowShowing: true }).lean().exec();

  request.log(['debug', 'now-showing'], `Returning ${movies.length} movies`);