Skip to content

Supporting Release For Connect 2.4.12 #308

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
Jun 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
38822b1
winning submission from challenge 30088320 - Topcoder Project Service…
maxceem Apr 12, 2019
c03cd38
Merge branch 'dev' into feature/product-templates-refactoring
Apr 25, 2019
29ed9d4
Merge pull request #290 from topcoder-platform/feature/product-templa…
Apr 25, 2019
e5abefb
Improvements for product/project template refactoring
mfikria Apr 28, 2019
bae5000
update joi validation
mfikria Apr 29, 2019
866c8f5
Merge pull request #297 from mfikria/dev-296
maxceem Apr 30, 2019
25474df
issue #296 - add validation for form, planConfig and priceConfig obj…
maxceem Apr 30, 2019
40628db
Merge pull request #298 from topcoder-platform/feature/project-produc…
Apr 30, 2019
ed35589
winning submission from challenge 30089841 - Topcoder Project Service…
maxceem May 3, 2019
0b66bce
Merge pull request #300 from maxceem/feature/db-ednpoints
May 6, 2019
cb3f60b
winning submission from challenge 30090281 - Topcoder Project Service…
maxceem May 8, 2019
9f87f52
implement email validation
mfikria May 8, 2019
550b153
update regex validation and function parameters
mfikria May 9, 2019
01973ef
update email regex to lower case
mfikria May 9, 2019
57a2581
fix regex for validating email
mfikria May 10, 2019
5d29438
Merge pull request #302 from mfikria/feature/fix-email-duplicated-inv…
maxceem May 10, 2019
5a9cd64
Merge pull request #303 from topcoder-platform/feature/fix-email-dupl…
May 10, 2019
c321f50
fully removed system user token usage
maxceem Mar 15, 2019
da17ed3
winning submission of the challenge 30091706 - Topcoder Project Servi…
maxceem May 27, 2019
495f65e
set length of the conditions for ProjectEstimation model to 512
maxceem May 27, 2019
a8f25a2
Merge pull request #306 from topcoder-platform/feature/project-estima…
May 27, 2019
2382b49
Winning submission from challenge 30091748 - Topcoder Project Service…
maxceem May 28, 2019
3d6e68e
Merge pull request #307 from maxceem/feature/fix-member-remove-from-es
May 28, 2019
cfb206b
Sending project estimations to the RabbitMQ event
May 28, 2019
48bd747
Lint fix
May 28, 2019
1a65453
fixed typo
May 28, 2019
b51a357
Returning id of the created project estimations
May 28, 2019
1fc0db8
Disabling the GMAIL duplication check for safety
Jun 3, 2019
edd62ed
Skipping unit tests for gmail duplication test
Jun 3, 2019
271f710
Merge branch 'master' into dev
RishiRajSahu Jun 4, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions config/custom-environment-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
"fileServiceEndpoint": "FILE_SERVICE_ENDPOINT",
"identityServiceEndpoint": "IDENTITY_SERVICE_ENDPOINT",
"memberServiceEndpoint": "MEMBER_SERVICE_ENDPOINT",
"systemUserClientId": "SYSTEM_USER_CLIENT_ID",
"systemUserClientSecret": "SYSTEM_USER_CLIENT_SECRET",
"connectProjectsUrl": "CONNECT_PROJECTS_URL",
"dbConfig": {
"masterUrl": "DB_MASTER_URL",
Expand Down
5 changes: 2 additions & 3 deletions config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"timelineIndexName": "timelines",
"timelineDocType": "timelineV4"
},
"systemUserClientId": "",
"systemUserClientSecret": "",
"connectProjectUrl":"",
"dbConfig": {
"masterUrl": "",
Expand Down Expand Up @@ -59,5 +57,6 @@
"inviteEmailSectionTitle": "Project Invitation",
"connectUrl":"https://connect.topcoder-dev.com",
"accountsAppUrl": "https://accounts.topcoder-dev.com",
"MAX_REVISION_NUMBER": 100
"MAX_REVISION_NUMBER": 100,
"UNIQUE_GMAIL_VALIDATION": false
}
6 changes: 6 additions & 0 deletions migrations/20190410_refactor_product_templates.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
--
-- product_templates
--
ALTER TABLE product_templates ALTER COLUMN "template" DROP NOT NULL;

ALTER TABLE product_templates ADD COLUMN "form" json;
35 changes: 35 additions & 0 deletions migrations/20190526_project_estimation.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
--
-- CREATE NEW TABLE:
-- project_estimations
--

CREATE TABLE project_estimations
(
id bigint NOT NULL,
"buildingBlockKey" character varying(255) NOT NULL,
conditions character varying(512) NOT NULL,
price double precision NOT NULL,
"minTime" integer NOT NULL,
"maxTime" integer NOT NULL,
metadata json NOT NULL DEFAULT '{}'::json,
"projectId" bigint NOT NULL,
"deletedAt" timestamp with time zone,
"createdAt" timestamp with time zone,
"updatedAt" timestamp with time zone,
"deletedBy" bigint,
"createdBy" integer NOT NULL,
"updatedBy" integer NOT NULL,
CONSTRAINT project_estimations_pkey PRIMARY KEY (id)
);

CREATE SEQUENCE project_estimations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;

ALTER SEQUENCE project_estimations_id_seq OWNED BY project_estimations.id;

ALTER TABLE project_estimations
ALTER COLUMN id SET DEFAULT nextval('project_estimations_id_seq');
Loading