22 lines
364 B
Ruby
22 lines
364 B
Ruby
# frozen_string_literal: true
|
|
require "roda"
|
|
require 'tilt'
|
|
require 'tilt/erubi'
|
|
|
|
class App < Roda
|
|
plugin :render, escape: true
|
|
plugin :route_csrf
|
|
|
|
route do |r|
|
|
check_csrf!
|
|
|
|
r.root do
|
|
@page_title = 'Assistants List'
|
|
@subtitle = 'All ASsistants in Database'
|
|
# renders index.erb inside layout.erb
|
|
view :index
|
|
end
|
|
|
|
end
|
|
end
|