Allow dashes in domain name search
[akkoma] / lib / pleroma / config.ex
index b35491fdc3564cc855f6b22bbae28ffe44953dea..54e332595d73762f155ce5c438ea8bfd494184c0 100644 (file)
@@ -100,7 +100,7 @@ defmodule Pleroma.Config do
 
   def oauth_consumer_enabled?, do: oauth_consumer_strategies() != []
 
-  def oauth_admin_scopes(scopes) when is_list(scopes) do
-    Enum.map(scopes, fn scope -> "admin:#{scope}" end)
+  def feature_enabled?(feature_name) do
+    get([:features, feature_name]) not in [nil, false, :disabled, :auto]
   end
 end