otvorenesudy/otvorenesudy-api

View on GitHub
app/controllers/welcome_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class WelcomeController < ApplicationController
  layout 'welcome'

  def index
    @invite = Invite.new
    @welcome_page = WelcomePagePresenter.new(cache: Rails.cache)
  end
end