aboutsummaryrefslogtreecommitdiffstats
path: root/routers/org/setting.go
Commit message (Collapse)AuthorAgeFilesLines
* Golint fixed for modules/setting (#262)Lunny Xiao2016-11-271-2/+2
| | | | | | * golint fixed for modules/setting * typo fixed and renamed UNIXSOCKET to UnixSocket
* golint fixed for parts of routers root, dev, user and org dirs (#167)Lunny Xiao2016-11-181-10/+20
| | | | | | | | * golint fixed for parts of routers root, dev and org dirs * add user/auth.go golint fixed * rename unnecessary exported to unexported and user dir golint fixed
* Update import paths from github.com/go-gitea to code.gitea.io (#135)Sandro Santilli2016-11-101-7/+7
| | | | | | | - 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
* moreSandro Santilli2016-11-071-1/+1
|
* Change import reference to match gitea instead of gogs (#37)Rémy Boulanouar2016-11-031-7/+7
|
* Add support for federated avatars (#3320)Sandro Santilli2016-08-071-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Refactor User.Id to User.IDUnknwon2016-07-241-3/+3
|
* models/webhook: restrict deletion to be explicitly with repo and org IDUnknwon2016-07-171-16/+2
|
* #3274 fix can't get webhook detail of organizationUnknwon2016-07-161-1/+1
|
* Rename module: middleware -> contextUnknwon2016-03-111-8/+8
|
* Added: Ability to delete org avatar.Tamás Molnár2016-03-061-0/+8
|
* fix #2268novaeye2015-12-231-0/+2
|
* #2156 admin able to edit organization max repo creationUnknwon2015-12-111-0/+4
|
* more link fixUnknwon2015-11-241-2/+2
|
* fix #981Unknwon2015-09-171-2/+7
|
* #1191 allow upload avatar for orgUnknwon2015-09-061-0/+12
| | | | Signed-off-by: Unknwon <u@gogs.io>
* finish new org settings pageUnknwon2015-09-061-3/+11
|
* new org options UIUnknwon2015-09-061-8/+8
|
* #1193 Make organization emails non-mandatoryUnknwon2015-09-061-9/+1
|
* new webhooks list UIUnknwon2015-08-261-1/+15
|
* #1070 Clearer error message for illegal charactersUnknwon2015-03-261-1/+1
|
* #1067: Deleting users should remove them from collaborator listsUnknwon2015-03-171-4/+3
| | | | - fix delete user but repository watches are not decreased
* models: able to rename user with diff letter cases #981Unknwon2015-02-221-5/+10
| | | | | - templates/org: mirror fix on name output - routers: add missing error check
* Update with macaronUnknwon2014-10-061-1/+1
|
* Add suburl supportUnknwon2014-09-191-4/+4
|
* Allow Gogs to run from a suburl behind a reverse proxy. e.g. ↵Martin van Beurden2014-09-181-4/+5
| | | | | | | | | | | | | | 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
* add organization-level webhooksChristopher Brickley2014-09-051-0/+28
|
* Page: `/org/:orgname/settings`Unknwon2014-08-141-0/+99