Skip to content

Commit 88fc172

Browse files
author
vikasrohit
authored
Merge pull request #252 from topcoder-platform/dev
Supporting release for Connect 2.4.9
2 parents 5e1a909 + 1f4c110 commit 88fc172

34 files changed

+2109
-52
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ workflows:
7676
- test
7777
filters:
7878
branches:
79-
only: ['dev']
79+
only: ['dev', 'feature/attachmentPermissions']
8080
- deployProd:
8181
requires:
8282
- test

config/default.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"idleTimeout": 1000
3636
},
3737
"kafkaConfig": {
38+
"hosts": "localhost:9092"
3839
},
3940
"analyticsKey": "",
4041
"VALID_ISSUERS": "[\"https:\/\/topcoder-newauth.auth0.com\/\",\"https:\/\/api.topcoder-dev.com\"]",
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
--
2+
-- CREATE NEW TABLE:
3+
-- org_config
4+
--
5+
CREATE TABLE org_config (
6+
id bigint NOT NULL,
7+
"orgId" character varying(45) NOT NULL,
8+
"configName" character varying(45) NOT NULL,
9+
"configValue" character varying(512),
10+
"deletedAt" timestamp with time zone,
11+
"createdAt" timestamp with time zone,
12+
"updatedAt" timestamp with time zone,
13+
"deletedBy" bigint,
14+
"createdBy" bigint NOT NULL,
15+
"updatedBy" bigint NOT NULL
16+
);
17+
18+
CREATE SEQUENCE org_config_id_seq
19+
START WITH 1
20+
INCREMENT BY 1
21+
NO MINVALUE
22+
NO MAXVALUE
23+
CACHE 1;
24+
25+
ALTER SEQUENCE org_config_id_seq OWNED BY org_config.id;
26+
27+
ALTER TABLE org_config
28+
ALTER COLUMN id SET DEFAULT nextval('org_config_id_seq');
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
--
2+
-- project_attachments
3+
--
4+
ALTER TABLE project_attachments ADD COLUMN "allowedUsers" integer[];

package-lock.json

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

0 commit comments

Comments
 (0)