mirror of
https://github.com/System-End/cdn.git
synced 2026-04-19 22:05:13 +00:00
12 lines
394 B
Ruby
12 lines
394 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Views::Base < Components::Base
|
|
# The `Views::Base` is an abstract class for all your views.
|
|
|
|
# By default, it inherits from `Components::Base`, but you
|
|
# can change that to `Phlex::HTML` if you want to keep views and
|
|
# components independent.
|
|
|
|
# More caching options at https://www.phlex.fun/components/caching
|
|
def cache_store = Rails.cache
|
|
end
|