Skip to content

Commit

Permalink
qa-automation group (#2571)
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeart authored Feb 17, 2024
1 parent fd2c9dd commit 5b76326
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/app/routes/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions frontend/app/routes/contributors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}
}
2 changes: 1 addition & 1 deletion frontend/app/templates/contributors.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
>
<div>
<img
src={{i.avatar}}
src={{or i.avatar 'https://avatars.githubusercontent.com/u/34234'}}
alt="user avatar"
class="w-24 m-auto mb-2 rounded-full"
/>
Expand Down
3 changes: 1 addition & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
1 change: 1 addition & 0 deletions frontend/translations/en-us.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -312,5 +312,6 @@ contributors:
DEVELOPER: 'Developers'
SPECIALIST: 'Specialists'
QA: 'Quality Assurance'
AUTOTESTER: 'Developers in test'
DESIGNER: 'Designers'
OTHER: 'Other'
1 change: 1 addition & 0 deletions frontend/translations/ru-ru.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,5 +315,6 @@ contributors:
DEVELOPER: Разработчики
SPECIALIST: Специалисты
QA: Тестировщики
AUTOTESTER: Тестировщики автоматизаторы
DESIGNER: Дизайнеры
OTHER: Другие

0 comments on commit 5b76326

Please sign in to comment.