Compare commits

..

3 Commits

Author SHA1 Message Date
omaroughriss
5ed15a6761 Update url callback
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 3m56s
2025-07-24 12:51:59 +02:00
omaroughriss
acb1784f0c Update url redirection 2025-07-24 12:51:46 +02:00
omaroughriss
2d2ec997aa Update cicd to push 235 image 2025-07-24 12:48:53 +02:00
3 changed files with 4 additions and 4 deletions

View File

@ -2,11 +2,11 @@ name: Build and Push to Registry
on:
push:
branches: [ dev ]
branches: [ env_235 ]
env:
REGISTRY: git.4nkweb.com
IMAGE_NAME: 4nk/lecoffre-front
IMAGE_NAME: 4nk/lecoffre-front-235
jobs:
build-and-push:

View File

@ -32,7 +32,7 @@ export default function ClientBox(props: IProps) {
// TODO: review
const handleOpenConnectionLink = useCallback(() => {
const url = `http://localhost:3000/client-dashboard/${folderUid}/profile/${customer.uid}`;
const url = `https://lecoffreio.4nkweb.com/client-dashboard/${folderUid}/profile/${customer.uid}`;
alert(url);
}, [customer.uid, folderUid]);

View File

@ -51,7 +51,7 @@ export default function StepEmail(props: IProps) {
);
*/
router.push(
`https://qual-connexion.idnot.fr/user/IdPOAuth2/authorize/idnot_idp_v1?client_id=B3CE56353EDB15A9&redirect_uri=http://local.lecoffreio.4nkweb:3000/authorized-client&scope=openid,profile&response_type=code`,
`https://qual-connexion.idnot.fr/user/IdPOAuth2/authorize/idnot_idp_v1?client_id=B3CE56353EDB15A9&redirect_uri=https://lecoffreio.4nkweb.com/authorized-client&scope=openid,profile&response_type=code`,
);
}, [router]);