feat(connector): add auth_token_refresh for payu and some quick bug fixes (#426)

Co-authored-by: Narayan Bhat <narayan.bhat@juspay.in>
Co-authored-by: samraat bansal <samraat.bansal@samraat.bansal-MacBookPro>
Co-authored-by: Jagan Elavarasan <jaganelavarasan@gmail.com>
This commit is contained in:
SamraatBansal
2023-01-21 23:34:44 +05:30
committed by GitHub
parent beae6c474c
commit da6a026ef7
13 changed files with 396 additions and 133 deletions

View File

@ -529,7 +529,7 @@ pub enum Connector {
impl Connector {
pub fn supports_access_token(&self) -> bool {
matches!(self, Self::Globalpay)
matches!(self, Self::Globalpay | Self::Payu)
}
}