org.camunda.feel.playground.sevice.MixpanelProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feel-scala-playground Show documentation
Show all versions of feel-scala-playground Show documentation
The API for the FEEL-Scala Playground
package org.camunda.feel.playground.sevice;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Configuration;
@Configuration
@ConditionalOnProperty(prefix = "playground.tracking", name = "enabled", havingValue = "true")
public class MixpanelProperties {
@Value("${MIXPANEL_PROJECT_TOKEN}")
private String projectToken;
public String getProjectToken() {
return projectToken;
}
}