summaryrefslogtreecommitdiffstats
path: root/routers/admin/admin.go
Commit message (Collapse)AuthorAgeFilesLines
* Add admin dashboard option to run health checks (#3606)Allen Wild2018-03-021-0/+4
| | | | | There's one for git gc, why not git fsck too? Also add a couple more trace logs to GitFsck to see progress
* Add commit count caching (#2774)Lauris BH2017-10-261-3/+3
| | | | | | | | | | * Add commit count caching * Small refactoring * Add different key prefix for refs and commits * Add configuratuion option to allow to change caching time or disable it
* Webhooks for repo creation/deletion (#1663)Ethan Koenig2017-09-031-1/+1
| | | | | | | | * Webhooks for repo creation/deletion * add createHookTask * Add handles for GetSlackPayload and GetDiscordPayload
* Make time diff translatable (#2057)Lauris BH2017-06-281-1/+1
|
* Display config file path on admin panel (#2030)Lunny Xiao2017-06-221-0/+1
|
* LDAP user synchronization (#1478)Lauris BH2017-05-101-0/+4
|
* Take back control of hooks (#1006)Lunny Xiao2017-02-231-2/+2
| | | | | | | | | | | | | | | | * git: delegate all server-side Git hooks (#1623) * create hooks directories * take control hooks back * fix lint * bug fixed and minor changes * fix imports style * fix migration scripts
* feat: add git version on admin panel. (#921)Bo-Yi Wu2017-02-131-0/+1
|
* Refactor process package and introduce ProcessManager{} with tests (#75)Matthias Loibl2017-01-171-1/+1
| | | | | | | | | | * Add a process.Manager singleton with process.GetManager() * Use process.GetManager everywhere * Fix godoc comments for process module * Increment process counter id after locking the mutex
* Golint fixed for modules/setting (#262)Lunny Xiao2016-11-271-3/+3
| | | | | | * golint fixed for modules/setting * typo fixed and renamed UNIXSOCKET to UnixSocket
* go lint fixed for routers/adminLunny Xiao2016-11-211-23/+27
|
* Update import paths from github.com/go-gitea to code.gitea.io (#135)Sandro Santilli2016-11-101-6/+6
| | | | | | | - Update import paths from github.com/go-gitea to code.gitea.io - Fix import path for travis See https://docs.travis-ci.com/user/languages/go#Go-Import-Path
* Change import reference to match gitea instead of gogs (#37)Rémy Boulanouar2016-11-031-6/+6
|
* Fix typo CacheInternal -> CacheInterval (#3432)Thibault Meyer2016-08-111-1/+1
|
* #3091 show Git configs on admin panelUnknwon2016-08-101-0/+2
|
* Add support for federated avatars (#3320)Sandro Santilli2016-08-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add support for federated avatars Fixes #3105 Removes avatar fetching duplication code Adds an "Enable Federated Avatar" checkbox in user settings (defaults to unchecked) Moves avatar settings all in the same form, making local and remote avatars mutually exclusive Renames UploadAvatarForm to AvatarForm as it's not anymore only for uploading * Run gofmt on all modified files * Move Avatar form in its own page * Add go-libravatar dependency to vendor/ dir Hopefully helps with accepting the contribution. See also #3214 * Revert "Add go-libravatar dependency to vendor/ dir" This reverts commit a8cb93ae640bbb90f7d25012fc257bda9fae9b82. * Make federated avatar setting a global configuration Removes the per-user setting * Move avatar handling back to base tool, disable federated avatar in offline mode * Format, handle error * Properly set fallback host * Use unsupported github.com mirror for importing go-libravatar * Remove comment showing life exists outside of github.com ... pity, but contribution would not be accepted otherwise * Use Combo for Get and Post methods over /avatar * FEDERATED_AVATAR -> ENABLE_FEDERATED_AVATAR * Fix persistance of federated avatar lookup checkbox at install time * Federated Avatars -> Enable Federated Avatars * Use len(string) == 0 instead of string == "" * Move import line where it belong See https://github.com/Unknwon/go-code-convention/blob/master/en-US/import_packages.md Pity the import url is still the unofficial one, but oh well... * Save a line (and waste much more expensive time) * Remove redundant parens * Remove an empty line * Remove empty lines * Reorder lines to make diff smaller * Remove another newline Unknwon review got me start a fight against newlines * Move DISABLE_GRAVATAR and ENABLE_FEDERATED_AVATAR after OFFLINE_MODE On re-reading the diff I figured what Unknwon meant here: https://github.com/gogits/gogs/pull/3320/files#r73741106 * Remove newlines that weren't there before my intervention
* #2854 fix no mail notification when issue is closed/reopenedUnknwon2016-07-161-2/+1
|
* Rename module: middleware -> contextUnknwon2016-03-111-5/+5
|
* #1891 attempt to fix expected invalid CSRF tokenUnknwon2016-03-031-1/+0
| | | | - Remove unused config settings `[picture] service`
* Post work for #2637Unknwon2016-02-271-0/+2
| | | | Improve test cases, config settings, also show SSH config settings on admin config panel.
* Minor fix for #2660Unknwon2016-02-241-3/+8
|
* Test mailer button. Addresses #1531Josh Frye2016-02-241-0/+8
|
* Move cron module to independent packageUnknwon2016-02-201-1/+1
| | | | Make it easier to keep track of upstream changes and bug fixes
* #2554 reinitialize all repos from the dbUnknwon2016-02-041-0/+4
| | | | - Update locales
* add admin op: delete missing reposUnknwon2015-11-181-0/+4
|
* fix import path, fix #1782Unknwon2015-10-151-1/+1
|
* drop oauth2 feature supportUnknwon2015-09-171-11/+1
|
* typo and READMEUnknwon2015-09-121-1/+1
|
* make cron task configurableUnknwon2015-08-181-2/+2
|
* able to allow insecure certification of webhook for #891Unknwon2015-02-101-4/+1
|
* cmd: code fix for #905Unknwon2015-02-081-0/+4
| | | | | | | - routers/admin: add rewrite update hook operation - conf/locale: update locale file due to ini behavior changes - cmd/cert_stub.go: remove useless code - cmd/fix.go: no longer need fix command(at least now)
* add afunction to rewrite all public keys on admin requestfzerorubigd2015-01-011-0/+4
| | | | refs #763
* fix API changesUnknwon2014-12-281-1/+0
|
* fix #580Unknwon2014-11-301-0/+4
|
* Fix #635Unknwon2014-11-181-2/+7
|
* Add suburl supportUnknwon2014-09-191-1/+1
|
* Allow Gogs to run from a suburl behind a reverse proxy. e.g. ↵Martin van Beurden2014-09-181-1/+1
| | | | | | | | | | | | | | http://mydomain.com/gogs/ Conflicts: modules/setting/setting.go Conflicts: templates/repo/release/list.tmpl templates/user/dashboard/dashboard.tmpl Conflicts: routers/repo/setting.go
* Finish all new admin pages.Unknwon2014-08-301-20/+12
|
* Continue working on new admin pagesUnknwon2014-08-291-44/+0
|
* Finish new admin users pagesUnknwon2014-08-291-30/+0
|
* Finish new admin dashboardUnknwon2014-08-281-2/+3
|
* Convert captcha, cache, csrf as middlewaresUnknwon2014-07-311-1/+2
|
* New UI merge in progressUnknwon2014-07-261-5/+6
|
* Fix #285Unknown2014-07-121-2/+2
|
* Paging function for users and repositoriesUnknown2014-07-071-3/+37
|
* Fix #165Unknown2014-06-241-1/+1
|
* In progress of name template name constantUnknown2014-06-221-9/+18
|
* Fix #165Unknown2014-06-211-3/+10
|
* Basic process managerUnknown2014-06-191-1/+4
|
* Add corn rask monitor panelUnknown2014-06-131-0/+17
|