inbox.go 497 B

123456789101112131415161718192021222324
  1. // Copyright 2015 The Gogs Authors. All rights reserved.
  2. // Copyright 2018 Gitote. All rights reserved.
  3. //
  4. // This source code is licensed under the MIT license found in the
  5. // LICENSE file in the root directory of this source tree.
  6. package admin
  7. import (
  8. "gitote/gitote/pkg/context"
  9. )
  10. const (
  11. // INBOX page template
  12. INBOX = "admin/inbox"
  13. )
  14. // Inbox shows admin inbox page
  15. func Inbox(c *context.Context) {
  16. c.Data["Title"] = "Inbox"
  17. c.Data["PageIsAdminInbox"] = true
  18. c.HTML(200, INBOX)
  19. }