about summary refs log tree commit diff
path: root/app/lib/themes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/themes.rb')
-rw-r--r--app/lib/themes.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/lib/themes.rb b/app/lib/themes.rb
deleted file mode 100644
index 243ffb9ab..000000000
--- a/app/lib/themes.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-require 'singleton'
-require 'yaml'
-
-class Themes
-  include Singleton
-
-  def initialize
-    @conf = YAML.load_file(Rails.root.join('config', 'themes.yml'))
-  end
-
-  def names
-    @conf.keys
-  end
-end