aboutsummaryrefslogtreecommitdiff
path: root/routers/admin
Commit message (Collapse)AuthorAge
* Refactoring: remove tool.TplNameUnknwon2017-04-05
|
* Refactoring: rename pkg/base -> pkg/toolUnknwon2017-04-05
|
* Refactoring: rename modules -> pkgUnknwon2017-04-04
| | | | | | | | Reasons to change: 1. Shorter than 'modules' 2. More generally used by other Go projects 3. Corresponds to the naming of '$GOPATH/pkg' directory
* explore: able list and search for private but accessible repositories (#3088)Unknwon2017-03-17
|
* admin: fix template errorUnknwon2017-02-28
| | | | Also a try to display key-value pairs in table.
* refactoring: modules/auth/*_form.go -> modules/formUnknwon2017-02-27
|
* admin/config: display repository related settings (#3816)Unknwon2017-02-18
|
* git: delegate all server-side Git hooks (#1623)Unknwon2017-02-14
|
* config: show Git version in admin panelUnknwon2017-02-11
|
* log: start using gopkg.in/clog.v1Unknwon2017-02-09
|
* Move models/mail.go to modules/mail.goUnknwon2017-01-30
| | | | To use interface to replace *models.User in avoiding cycle import.
* Disable local path migration by default (#4033)Unknwon2017-01-26
| | | | | | | Site admin now has to enable manually by config option [repository] ENABLE_LOCAL_PATH_MIGRATION = true. Site admin always grants this permission, but regulars users have to be allowed by site admins in admin user panel.
* Fix random string generator (#3953)leonklingele2016-12-21
| | | | | | | | * Remove unused custom-alphabet feature of random string generator * Fix modulo-biased random string generator * Random string generator should return error if it fails to read random data via crypto/rand
* Fix string format verbs (#3637)Alexander Lunegov2016-12-21
|
* models/login_source: code improvementUnknwon2016-08-31
|
* #3515 use alert instead 500 for duplicated login source nameUnknwon2016-08-31
|
* Fix typo CacheInternal -> CacheInterval (#3432)Thibault Meyer2016-08-11
|
* #3091 show Git configs on admin panelUnknwon2016-08-10
|
* Add support for federated avatars (#3320)Sandro Santilli2016-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-24
|
* Use struct for UI settingsUnknwon2016-07-24
|
* #2937 able to prohibit user loginUnknwon2016-07-16
|
* #2854 fix no mail notification when issue is closed/reopenedUnknwon2016-07-16
|
* Use SecurityProtocol to replace UseSSL in LDAP configUnknwon2016-07-08
| | | | Initially proposed by #2376 and fixes #3068 as well.
* #13 fix admin can't search private reposUnknwon2016-03-15
| | | | - update glide info
* #13 finish user and repository searchUnknwon2016-03-11
| | | | Both are possible on explore and admin panel
* Rename module: middleware -> contextUnknwon2016-03-11
|
* #1146 finsih UI work for access mode of collaboratorsUnknwon2016-03-05
| | | | | Collaborators have write access as default, and can be changed via repository collaboration settings page to change between read, write and admin.
* #1891 attempt to fix expected invalid CSRF tokenUnknwon2016-03-03
| | | | - Remove unused config settings `[picture] service`
* Post work for #2637Unknwon2016-02-27
| | | | Improve test cases, config settings, also show SSH config settings on admin config panel.
* Minor fix for #2660Unknwon2016-02-24
|
* Test mailer button. Addresses #1531Josh Frye2016-02-24
|
* Move cron module to independent packageUnknwon2016-02-20
| | | | Make it easier to keep track of upstream changes and bug fixes
* LDAP: Fetch attributes in Bind DN context optionAdam Strzelecki2016-02-20
| | | | | | | | | This is feature is workaround for #2628 (JumpCloud) and some other services that allow LDAP search only under BindDN user account, but not allow any LDAP search query in logged user DN context. Such approach is an alternative to minimal permissions security pattern for BindDN user.
* #2554 reinitialize all repos from the dbUnknwon2016-02-04
| | | | - Update locales
* #1938 #1374 disable password change for non-local usersUnknwon2015-12-10
|
* #1575 Limit repo creationUnknwon2015-12-10
|
* remember page number when delete repoUnknwon2015-12-05
|
* #2063 Ability to delete repo from admin panelUnknwon2015-12-05
|
* APIs: admin usersUnknwon2015-12-05
|
* #2052 advanced select ops for system noticesUnknwon2015-12-05
|
* #2052 Ability to batch delete system noticesUnknwon2015-12-01
|
* LDAP: Optional user name attribute specificationAdam Strzelecki2015-12-02
| | | | | | | | | | | | | | | Consider following LDAP search query example: (&(objectClass=Person)(|(uid=%s)(mail=%s))) Right now on first login attempt Gogs will use the text supplied on login form as the newly created user name. In example query above the text matches against both e-mail or user name. So if user puts the e-mail then the new Gogs user name will be e-mail which may be undesired. Using optional user name attribute setting we can explicitly say we want Gogs user name to be certain LDAP attribute eg. `uid`, so even user will use e-mail to login 1st time, the new account will receive correct user name.
* add admin op: delete missing reposUnknwon2015-11-18
|
* fix #1930Unknwon2015-11-12
|
* #1511 Allow local import only for admin usersUnknwon2015-11-03
|
* fix import path, fix #1782Unknwon2015-10-15
|
* #1525 Triggere mailer for admin created accountsUnknwon2015-09-25
|
* #1693 minor fixUnknwon2015-09-25
|
* Merge pull request #1693 from sapk/fix-admin-repo-new-ui无闻2015-09-25
|\ | | | | Fix admin repos new ui