getUser reads the user from the context.
(ctx context.Context)
| 77 | |
| 78 | // getUser reads the user from the context. |
| 79 | func getUser(ctx context.Context) *models.User { |
| 80 | return shared.GetUser(ctx) |
| 81 | } |
| 82 | |
| 83 | // getTargetUser reads the user from the context. |
| 84 | func getTargetUser(ctx context.Context) *models.User { |
searching dependent graphs…