8 lines
119 B
Ruby
8 lines
119 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DashboardController < ApplicationController
|
|
def home; end
|
|
|
|
def other; end
|
|
end
|