Skip to content
Snippets Groups Projects
Unverified Commit 27e32d7f authored by Cam Saul's avatar Cam Saul Committed by GitHub
Browse files

Remove placeholder code for the new 41 premium features (#18126)

parent 2b0a6c79
No related branches found
No related tags found
No related merge requests found
......@@ -153,30 +153,13 @@
[]
(boolean (seq (token-features))))
(def ^:private ^:deprecated PLACEHOLDER-DO-NOT-RELEASE-new-41-features
"The following features are not yet live and thus no actual tokens have them. Until they're live (see
https://github.com/metabase/harbormaster/issues/2006) we will 'simulate' these features by pretending we have them
if we have a token with _any_ other features.
This is temporary code and needs to be removed entirely before the 0.41.0 release.
DO NOT RELEASE 0.41.0 WITH THIS CODE STILL IN PLACE!!!
@camsaul will remove this in the next week or so unless he dies. If he dies, please remove it in memory of him and
bury him with it."
#{:advanced-config
:advanced-permissions
:content-management})
(defn has-feature?
"Does this instance's premium token have `feature`?
(has-feature? :sandboxes) ; -> true
(has-feature? :toucan-management) ; -> false"
[feature]
(if (PLACEHOLDER-DO-NOT-RELEASE-new-41-features (keyword feature))
(has-any-features?)
(contains? (token-features) (name feature))))
(contains? (token-features) (name feature)))
(defn- default-premium-feature-getter [feature]
(fn []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment