mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[Multi] Propagate provider type to sync response
This commit is contained in:
parent
4baa4d6ba4
commit
36b04606f8
@ -22,6 +22,7 @@ public class ProfileProviderResponseModel : ResponseModel
|
|||||||
UserId = provider.UserId;
|
UserId = provider.UserId;
|
||||||
UseEvents = provider.UseEvents;
|
UseEvents = provider.UseEvents;
|
||||||
ProviderStatus = provider.ProviderStatus;
|
ProviderStatus = provider.ProviderStatus;
|
||||||
|
ProviderType = provider.ProviderType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Guid Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
@ -35,4 +36,5 @@ public class ProfileProviderResponseModel : ResponseModel
|
|||||||
public Guid? UserId { get; set; }
|
public Guid? UserId { get; set; }
|
||||||
public bool UseEvents { get; set; }
|
public bool UseEvents { get; set; }
|
||||||
public ProviderStatusType ProviderStatus { get; set; }
|
public ProviderStatusType ProviderStatus { get; set; }
|
||||||
|
public ProviderType ProviderType { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -17,4 +17,5 @@ public class ProviderUserProviderDetails
|
|||||||
public string Permissions { get; set; }
|
public string Permissions { get; set; }
|
||||||
public bool UseEvents { get; set; }
|
public bool UseEvents { get; set; }
|
||||||
public ProviderStatusType ProviderStatus { get; set; }
|
public ProviderStatusType ProviderStatus { get; set; }
|
||||||
|
public ProviderType ProviderType { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -35,6 +35,7 @@ public class ProviderUserProviderDetailsReadByUserIdStatusQuery : IQuery<Provide
|
|||||||
Permissions = x.pu.Permissions,
|
Permissions = x.pu.Permissions,
|
||||||
UseEvents = x.p.UseEvents,
|
UseEvents = x.p.UseEvents,
|
||||||
ProviderStatus = x.p.Status,
|
ProviderStatus = x.p.Status,
|
||||||
|
ProviderType = x.p.Type
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user