diff --git a/config/main.coffee.example b/app/config/main.coffee.example similarity index 82% rename from config/main.coffee.example rename to app/config/main.coffee.example index e44e4470..c9ac04a6 100644 --- a/config/main.coffee.example +++ b/app/config/main.coffee.example @@ -6,11 +6,12 @@ config = { defaultLanguage: "en" languageOptions: { - "es": "Spanish" "en": "English" } pubblicRegisterEnabled: true + privacyPolicyUrl: null + termsOfServiceUrl: null } angular.module("taigaLocalConfig", []).value("localconfig", config) diff --git a/gulpfile.coffee b/gulpfile.coffee index 4a972ca9..22f58392 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -36,7 +36,7 @@ paths = { images: "app/images/**/*" locales: "app/locales/**/*.json" coffee: ["app/coffee/app.coffee", - "config/main.coffee", + "app/config/*.coffee", "app/coffee/*.coffee", "app/coffee/modules/controllerMixins.coffee", "app/coffee/modules/*.coffee",