mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-13 10:41:38 -05:00
7 lines
138 B
Ruby
7 lines
138 B
Ruby
# frozen_string_literal: true
|
|
|
|
class HomeController < ApplicationController
|
|
def index
|
|
redirect_to map_url if current_user
|
|
end
|
|
end
|