summaryrefslogtreecommitdiff
path: root/app/controllers/dashboard/dto.go
blob: 0a7f39d3264dd585d592fa65dd30de9d773cb790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package dashboard

import "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/domain"

type ViewDashboardDTO struct {
	CurrentUser *domain.User
}

type NavigationDTO struct {
	IsLoggedIn  bool
	CurrentUser *domain.User
}