Replace trust center alias with resource alias in console API
Drop the setTrustCenterAlias and removeTrustCenterAlias mutations and the alias field on Audit in favor of generic setResourceAlias and removeResourceAlias mutations backed by the resourcealias service. Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
@@ -550,12 +550,6 @@ extend type Mutation {
|
||||
deleteCustomDomain(
|
||||
input: DeleteCustomDomainInput!
|
||||
): DeleteCustomDomainPayload!
|
||||
setTrustCenterAlias(
|
||||
input: SetTrustCenterAliasInput!
|
||||
): SetTrustCenterAliasPayload!
|
||||
removeTrustCenterAlias(
|
||||
input: RemoveTrustCenterAliasInput!
|
||||
): RemoveTrustCenterAliasPayload!
|
||||
}
|
||||
|
||||
input UpdateTrustCenterInput {
|
||||
@@ -765,26 +759,3 @@ type CreateCustomDomainPayload {
|
||||
type DeleteCustomDomainPayload {
|
||||
deletedCustomDomainId: ID!
|
||||
}
|
||||
|
||||
input SetTrustCenterAliasInput {
|
||||
resourceId: ID!
|
||||
alias: String!
|
||||
}
|
||||
|
||||
input RemoveTrustCenterAliasInput {
|
||||
resourceId: ID!
|
||||
}
|
||||
|
||||
type TrustCenterAlias {
|
||||
resourceId: ID!
|
||||
alias: String!
|
||||
organization: Organization! @goField(forceResolver: true)
|
||||
}
|
||||
|
||||
type SetTrustCenterAliasPayload {
|
||||
alias: TrustCenterAlias!
|
||||
}
|
||||
|
||||
type RemoveTrustCenterAliasPayload {
|
||||
deletedResourceId: ID!
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user