mirror of
https://github.com/System-End/identity-vault.git
synced 2026-04-19 20:55:11 +00:00
16 lines
271 B
Ruby
16 lines
271 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Views
|
|
end
|
|
|
|
module Components
|
|
extend Phlex::Kit
|
|
end
|
|
|
|
Rails.autoloaders.main.push_dir(
|
|
Rails.root.join("app/views"), namespace: Views
|
|
)
|
|
|
|
Rails.autoloaders.main.push_dir(
|
|
Rails.root.join("app/components"), namespace: Components
|
|
)
|