Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…center into clone-payment-methods-feature
  • Loading branch information
Gitanjli Chopra authored and Gitanjli Chopra committed Jan 6, 2025
2 parents 52d26c7 + 800d97f commit f49abbc
Show file tree
Hide file tree
Showing 36 changed files with 443 additions and 308 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,49 @@ All notable changes to this project will be documented in this file. See [conven

- - -

## 2025.01.03.2

### Refactors

- Payment settings redesign ([#1996](https://github.com/juspay/hyperswitch-control-center/pull/1996)) ([`c009366`](https://github.com/juspay/hyperswitch-control-center/commit/c009366f5b22b36d06efe5200c7d57a440452c0a))

### Miscellaneous Tasks

- Added required tenant user checks ([#2008](https://github.com/juspay/hyperswitch-control-center/pull/2008)) ([`8144ae1`](https://github.com/juspay/hyperswitch-control-center/commit/8144ae1cc53a312b1b19555d73c486b30acb07db))

**Full Changelog:** [`2025.01.03.1...2025.01.03.2`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.03.1...2025.01.03.2)

- - -

## 2025.01.03.1

### Miscellaneous Tasks

- Support multitenancy domain ([#1979](https://github.com/juspay/hyperswitch-control-center/pull/1979)) ([`93f318c`](https://github.com/juspay/hyperswitch-control-center/commit/93f318cf33254a4fc9363834e727dc8243a0f52d))

**Full Changelog:** [`2025.01.03.0...2025.01.03.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.03.0...2025.01.03.1)

- - -

## 2025.01.03.0

### Features

- New analytics filter component ([#1962](https://github.com/juspay/hyperswitch-control-center/pull/1962)) ([`b754615`](https://github.com/juspay/hyperswitch-control-center/commit/b7546155c0705c04b1468e1985015b0ab24eaf53))

### Bug Fixes

- Get production access component visibility in sandbox ([#2000](https://github.com/juspay/hyperswitch-control-center/pull/2000)) ([`1636ab2`](https://github.com/juspay/hyperswitch-control-center/commit/1636ab21c37402d113a64db8a7794a67fe4655c6))

### Miscellaneous Tasks

- Invite users enhancement ([#1964](https://github.com/juspay/hyperswitch-control-center/pull/1964)) ([`b47d5f5`](https://github.com/juspay/hyperswitch-control-center/commit/b47d5f5626f16a2b42ddca103f6a9024d9a92ef1))
- Banner revamp ([#1990](https://github.com/juspay/hyperswitch-control-center/pull/1990)) ([`6cf5697`](https://github.com/juspay/hyperswitch-control-center/commit/6cf56970079a4354caa4e4dae7c6c14a9883e3f6))

**Full Changelog:** [`2024.12.31.0...2025.01.03.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.31.0...2025.01.03.0)

- - -

## 2024.12.31.0

### Features
Expand Down
46 changes: 39 additions & 7 deletions public/hyperswitch/icons/solid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/entryPoints/AuthModule/AuthUtils.res
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ let redirectToLogin = () => {
open LogicUtils

let authId = getSessionData(~key="auth_id")
let domain = getSessionData(~key="domain")
let domain = getSessionData(~key="domain") // todo: setting domain in session storage shall be removed later

let urlToRedirect = switch (authId->isNonEmptyString, domain->isNonEmptyString) {
| (true, true) => `/login?auth_id=${authId}&domain=${domain}`
Expand Down
2 changes: 1 addition & 1 deletion src/entryPoints/AuthModule/TwoFaAuth/TwoFaAuth.res
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ let make = (~setAuthStatus, ~authType, ~setAuthType) => {
~entityName=USERS,
~userType=#CONNECT_ACCOUNT,
~methodType=Post,
~queryParamerters=Some(`auth_id=${authId}&domain=${domain}`),
~queryParamerters=Some(`auth_id=${authId}&domain=${domain}`), // todo: domain shall be removed from query params later
)
let res = await updateDetails(url, body, Post)
let valuesDict = res->getDictFromJsonObject
Expand Down
Loading

0 comments on commit f49abbc

Please sign in to comment.