Skip to content

Commit

Permalink
NOISSUE - Add domain events consumer, listing of clients and channels…
Browse files Browse the repository at this point in the history
… with domains (#2656)

Signed-off-by: Arvindh <[email protected]>
  • Loading branch information
arvindh123 authored Jan 21, 2025
1 parent 3cb41fa commit 53e39a1
Show file tree
Hide file tree
Showing 23 changed files with 1,316 additions and 540 deletions.
18 changes: 9 additions & 9 deletions channels/channels.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ type Channel struct {
UpdatedBy string `json:"updated_by,omitempty"`
Status clients.Status `json:"status,omitempty"` // 1 for enabled, 0 for disabled
// Extended
ParentGroupPath string `json:"parent_group_path"`
RoleID string `json:"role_id"`
RoleName string `json:"role_name"`
Actions []string `json:"actions"`
AccessType string `json:"access_type"`
AccessProviderId string `json:"access_provider_id"`
AccessProviderRoleId string `json:"access_provider_role_id"`
AccessProviderRoleName string `json:"access_provider_role_name"`
AccessProviderRoleActions []string `json:"access_provider_role_actions"`
ParentGroupPath string `json:"parent_group_path,omitempty"`
RoleID string `json:"role_id,omitempty"`
RoleName string `json:"role_name,omitempty"`
Actions []string `json:"actions,omitempty"`
AccessType string `json:"access_type,omitempty"`
AccessProviderId string `json:"access_provider_id,omitempty"`
AccessProviderRoleId string `json:"access_provider_role_id,omitempty"`
AccessProviderRoleName string `json:"access_provider_role_name,omitempty"`
AccessProviderRoleActions []string `json:"access_provider_role_actions,omitempty"`
}

type PageMetadata struct {
Expand Down
Loading

0 comments on commit 53e39a1

Please sign in to comment.