9 lines
158 B
Ruby
9 lines
158 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DashboardController < ApplicationController
|
|
def home; end
|
|
def other; end
|
|
def placement; end
|
|
def missing; end
|
|
end
|