export default async (request: Hapi.Request) => {
  const theatreSlug = request.params.theatreSlug;

  if (!theatreSlug) {
    const theatres = await Theatre.find({}).lean().exec();