mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 22:15:09 +00:00
17 lines
361 B
Ruby
17 lines
361 B
Ruby
require "set"
|
|
|
|
module Public
|
|
class MapsController < ApplicationController
|
|
include Frameable
|
|
layout "public/frameable"
|
|
|
|
def show
|
|
@return_path = public_root_path
|
|
@letters_data = Rails.cache.read("map_data")
|
|
if @letters_data.nil?
|
|
Public::UpdateMapDataJob.perform_later
|
|
@letters_data = []
|
|
end
|
|
end
|
|
end
|
|
end
|