| 123456789101112131415161718192021222324 |
- // Copyright 2015 The Gogs Authors. All rights reserved.
- // Copyright 2018 Gitote. All rights reserved.
- //
- // This source code is licensed under the MIT license found in the
- // LICENSE file in the root directory of this source tree.
- package admin
- import (
- "gitote/gitote/pkg/context"
- )
- const (
- // INBOX page template
- INBOX = "admin/inbox"
- )
- // Inbox shows admin inbox page
- func Inbox(c *context.Context) {
- c.Data["Title"] = "Inbox"
- c.Data["PageIsAdminInbox"] = true
- c.HTML(200, INBOX)
- }
|