Skip to content
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

feat: image service integrated with feature flag #2003

Open
wants to merge 25 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2b21785
feat: image service integrated with feature flag
ivinayakg Apr 4, 2024
ad42791
Merge branch 'develop' into feat/image-service-live
Achintya-Chatterjee Apr 4, 2024
6ae08e1
Merge branch 'develop' into feat/image-service-live
sahsisunny Apr 7, 2024
e3a945e
Merge branch 'develop' into feat/image-service-live
joyguptaa Apr 10, 2024
c4163bf
refact: image service for updating profile picture activated
ivinayakg Apr 10, 2024
dc64727
Merge branch 'feat/image-service-live' of https://github.com/Real-Dev…
ivinayakg Apr 10, 2024
207b7c8
test: fix for photo verification unit tests
ivinayakg Apr 11, 2024
6c68259
fix: discord action for photo verification request
ivinayakg Apr 11, 2024
d1bebe3
test: integration tests for photo verification
ivinayakg Apr 11, 2024
7818242
fix: formatting of discord-actions tests
ivinayakg Apr 11, 2024
b27d720
feat: image service integrated with feature flag
ivinayakg Apr 4, 2024
7450443
refact: image service for updating profile picture activated
ivinayakg Apr 10, 2024
d81ee2a
test: fix for photo verification unit tests
ivinayakg Apr 11, 2024
6719b8a
fix: discord action for photo verification request
ivinayakg Apr 11, 2024
43c51da
test: integration tests for photo verification
ivinayakg Apr 11, 2024
ec1480f
fix: formatting of discord-actions tests
ivinayakg Apr 11, 2024
0e5574e
refact: discord-action for photo verification
ivinayakg Apr 19, 2024
4c564e1
Merge branch 'feat/image-service-live' of https://github.com/Real-Dev…
ivinayakg Apr 19, 2024
52b6d2f
fix: discord-actions tests fix
ivinayakg Apr 19, 2024
1a29a6a
fix: discord-actions test for photo-verification
ivinayakg Apr 21, 2024
6e16753
Merge branch 'develop' into feat/image-service-live
ivinayakg Apr 24, 2024
cd2d922
Merge branch 'develop' into feat/image-service-live
iamitprakash Apr 28, 2024
00ecbc9
Merge branch 'develop' into feat/image-service-live
iamitprakash May 5, 2024
0781021
refact: made suggested changes in photoRequestVerification
ivinayakg May 12, 2024
818307d
Merge branch 'feat/image-service-live' of https://github.com/Real-Dev…
ivinayakg May 12, 2024
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
Prev Previous commit
Next Next commit
fix: discord-actions tests fix
  • Loading branch information
ivinayakg committed Apr 19, 2024
commit 52b6d2fe9a1fa47b38b50efc9255616a95370d29
6 changes: 3 additions & 3 deletions test/integration/discordactions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ describe("Discord actions", function () {
await cleanDb();
});

describe("PATCH /discord-actions/avatar/update/discordId", function () {
describe("PATCH /discord-actions/avatar/photo-verification-update/discordId", function () {
let photoVerificationData;

beforeEach(async function () {
Expand All @@ -106,7 +106,7 @@ describe("Discord actions", function () {

const res = await chai
.request(app)
.patch(`/discord-actions/avatar/update/${photoVerificationData.discordId}`)
.patch(`/discord-actions/avatar/photo-verification-update/${photoVerificationData.discordId}`)
.set("cookie", `${cookieName}=${superUserAuthToken}`);

expect(res).to.have.status(200);
Expand All @@ -130,7 +130,7 @@ describe("Discord actions", function () {

const res = await chai
.request(app)
.patch(`/discord-actions/avatar/update/${discordId + "random-error-string"}`)
.patch(`/discord-actions/avatar/photo-verification-update/${discordId + "random-error-string"}`)
.set("cookie", `${cookieName}=${superUserAuthToken}`);

expect(res).to.have.status(500);
Expand Down
Loading