Skip to content

Commit

Permalink
Merge pull request #99 from uatisdeproblem/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
uatisdeproblem authored May 5, 2024
2 parents e485884 + 04f9fa9 commit 8787f9f
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions back-end/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion back-end/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.10.1",
"version": "1.10.2",
"name": "back-end",
"scripts": {
"lint": "eslint --ext .ts",
Expand Down
1 change: 1 addition & 0 deletions back-end/src/handlers/topics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ class Topics extends ResourceController {

this.topic = new Topic(this.body);
this.topic.topicId = await ddb.IUNID(PROJECT);
this.topic.createdAt = new Date().toISOString();
delete this.topic.updatedAt;
delete this.topic.numOfQuestions;

Expand Down
2 changes: 1 addition & 1 deletion back-end/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.3

info:
title: ESN Assembly app
version: 1.10.1
version: 1.10.2
contact:
name: Matteo Carbone
email: [email protected]
Expand Down
4 changes: 2 additions & 2 deletions front-end/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion front-end/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "esn-assembly",
"version": "1.10.1",
"version": "1.10.2",
"author": "Matteo Carbone",
"homepage": "https://matteocarbone.com/",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class ImportVotersStandaloneComponent implements OnInit {
downloadTemplate(): void {
const filename = `${this.t._('VOTING.IMPORT_VOTERS')}.xlsx`;
const session = new VotingSession(this.votingSession);
session.voters = [new Voter({ id: ' ' })];
session.voters = [new Voter({ id: ' ' }, session)];
this._voting.downloadVotersSpreadsheet(filename, session);
}
async import({ target }): Promise<void> {
Expand Down
2 changes: 1 addition & 1 deletion front-end/src/environments/environment.idea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const STAGE = 'prod';
*/
export const environment = {
idea: {
app: { version: '1.10.1', mediaUrl: 'https://'.concat(parameters.mediaDomain), maxFileUploadSizeMB: 50 },
app: { version: '1.10.2', mediaUrl: 'https://'.concat(parameters.mediaDomain), maxFileUploadSizeMB: 50 },
api: { url: parameters.apiDomain, stage: STAGE },
socket: { url: parameters.webSocketApiDomain, stage: STAGE },
ionicExtraModules: ['common']
Expand Down

0 comments on commit 8787f9f

Please sign in to comment.