aidamanna/appetype

View on GitHub
app/controllers/menus/new_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Menus
  class NewController < ApplicationController
    authorize_resource class: NewController

    def call
      next_week = Menus::NextWeekPicker.new.call
      @menu = Menu.new(week: next_week)

      render 'menus/new'
    end
  end
end