Skip to content

Commit 374de54

Browse files
committed
Merge branch 'prod'
2 parents 652a44b + b123996 commit 374de54

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"ecmaVersion": 11
1111
},
1212
"extends": ["eslint:recommended", "plugin:mocha/recommended"],
13+
"ignorePatterns": ["node_modules/", "dist/", "build/", "coverage/", "public/uploads/", "!**/node_modules/"],
1314
"rules": {
1415
"no-multi-spaces": ["error"]
1516
}

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 2025-06-19 - v5.1.9
2+
* Fix: Issue FE #2034: IDEAS: Add filters for demographic data
3+
14
## 2025-06-18 - v5.1.8
25
* Fix: Issue FE #2139: filter out draft activities
36

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import pluginJs from "@eslint/js";
33
import mochaPlugin from 'eslint-plugin-mocha';
44

55
export default [
6-
{ ignores: ["actions-runner/", "test/api/uploads/", "test/api/uploads/**"] },
6+
{ ignores: ["actions-runner/", "test/api/uploads/", "test/api/uploads/**", "!**/node_modules/"] },
77
{ files: ["**/*.js"], languageOptions: { sourceType: "commonjs" } },
88
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } },
99
pluginJs.configs.recommended,

npm-shrinkwrap.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "citizenos-api",
3-
"version": "5.1.8",
3+
"version": "5.1.9",
44
"private": false,
55
"license": "Apache-2.0",
66
"main": "./bin/www",

routes/api/ideation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4161,4 +4161,4 @@ module.exports = function (app) {
41614161
app.get('/api/users/:userId/topics/:topicId/ideations/:ideationId/ideas/:ideaId/attachments/:attachmentId', loginCheck(['partner']), topicService.hasPermission(TopicMemberUser.LEVELS.read, true), readAttachment);
41624162
app.get('/api/topics/:topicId/ideations/:ideationId/ideas/:ideaId/attachments/:attachmentId', topicService.hasVisibility(Topic.VISIBILITY.public), readAttachment);
41634163

4164-
}
4164+
}

0 commit comments

Comments
 (0)