diff --git a/frontend/app/routes/application.ts b/frontend/app/routes/application.ts
index 7d440e5df..518b2f621 100644
--- a/frontend/app/routes/application.ts
+++ b/frontend/app/routes/application.ts
@@ -21,7 +21,7 @@ export default class ApplicationRoute extends Route {
// skip testing bahavour for now
return;
}
- if (['user-agreement', 'description'].includes(to.name)) {
+ if (['user-agreement', 'description', 'contributors'].includes(to.name)) {
return;
}
if (!this.session.isAuthenticated) {
diff --git a/frontend/app/routes/contributors.ts b/frontend/app/routes/contributors.ts
index e33fc3c73..7fc0b80c5 100644
--- a/frontend/app/routes/contributors.ts
+++ b/frontend/app/routes/contributors.ts
@@ -7,7 +7,7 @@ export default class SpecialistsRoute extends Route {
@service('store') store!: Store;
async model() {
const request = await this.store.findAll('contributor');
- const kinds = ['DEVELOPER', 'QA', 'DESIGNER', 'OTHER'];
+ const kinds = ['DEVELOPER', 'QA', 'DESIGNER', 'OTHER', 'AUTOTESTER'];
return request.filterBy('isActive', true).sortBy('contribution').reverse().filter(e => kinds.includes(e.kind)).toArray();
}
-}
\ No newline at end of file
+}
diff --git a/frontend/app/templates/contributors.hbs b/frontend/app/templates/contributors.hbs
index 30750ac12..b5b516e45 100644
--- a/frontend/app/templates/contributors.hbs
+++ b/frontend/app/templates/contributors.hbs
@@ -21,7 +21,7 @@
>
diff --git a/frontend/package.json b/frontend/package.json
index 77c342738..dec7dd515 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -25,8 +25,7 @@
"on:precommit": "lint-staged",
"local": "ember s --secure-proxy=false --proxy=http://localhost:8081",
"develop": "cross-env FIREBASE_PROJECT_ID=brainup-spb-dev-bb6d0 FIREBASE_AUTH_DOMAIN=brainup-spb-dev-bb6d0.firebaseapp.com FIREBASE_API_KEY=AIzaSyB03Q4ZCxdqaKuN7cJqCQGhkibYD4Q-qsc ember s --secure-proxy=false --proxy=http://localhost:8081",
- "remote": "ember s --secure-proxy=false --proxy=http://ecse005003f1.epam.com/",
- "remote:prod": "ember s --secure-proxy=true --proxy=https://brainup.site/",
+ "remote": "ember s --secure-proxy=true --proxy=https://brainup.site/",
"mirage": "ember s",
"postinstall": "patch-package"
},
diff --git a/frontend/translations/en-us.yaml b/frontend/translations/en-us.yaml
index 0114225c1..7bcc32a89 100644
--- a/frontend/translations/en-us.yaml
+++ b/frontend/translations/en-us.yaml
@@ -312,5 +312,6 @@ contributors:
DEVELOPER: 'Developers'
SPECIALIST: 'Specialists'
QA: 'Quality Assurance'
+ AUTOTESTER: 'Developers in test'
DESIGNER: 'Designers'
OTHER: 'Other'
diff --git a/frontend/translations/ru-ru.yaml b/frontend/translations/ru-ru.yaml
index e01b581e4..f0667ad4d 100644
--- a/frontend/translations/ru-ru.yaml
+++ b/frontend/translations/ru-ru.yaml
@@ -315,5 +315,6 @@ contributors:
DEVELOPER: Разработчики
SPECIALIST: Специалисты
QA: Тестировщики
+ AUTOTESTER: Тестировщики автоматизаторы
DESIGNER: Дизайнеры
OTHER: Другие