summaryrefslogtreecommitdiffstats
path: root/routers
Commit message (Collapse)AuthorAgeFilesLines
* Remove unit types commits and settings (#2161)Lauris BH2017-07-172-21/+30
| | | | | | | | | | * Remove unit types commits and settings * Can not limit units in administrator teams * Limit changing units only to teams with read and write access mode * Small code optimization
* Fix OpenID registration route (#2160)Christian Weiske2017-07-131-1/+1
| | | Fixes #2101
* API: support '/orgs/:org/repos' (#2047)Aaron Walker2017-07-132-0/+19
| | | * API: support '/orgs/:org/repos'
* Fix repo API bug (#2133)Ethan Koenig2017-07-126-54/+63
| | | Don't require token when not necessary
* Fix GET /users/:username/repos endpoint (#2125)Ethan Koenig2017-07-101-30/+30
|
* Improve org error handling (#2117)Antoine GIRARD2017-07-063-5/+5
| | | | | | | | | | * Improve ErrOrgNotExist type Return new error type Use good error check Use new method to check error Update tests * Fix unchanged method name report
* Fix git hooks update to receive required arguments. Fixes #2090 (#2095)Lauris BH2017-07-021-1/+2
| | | * Changed migration calling so that migrations can use models package
* Fix API for branches with slashes (#2096)Ethan Koenig2017-07-022-2/+9
|
* Fix release display and correct paging (#2080)Lauris BH2017-06-292-17/+15
|
* Pagination on releases page (#2035)iszla2017-06-281-2/+8
| | | | | | | | | | | | | | | | | | | | | | * Added count to GetReleasesByRepoID so pagination will work * Separated it out to a new function, can then also leave the API part unaffected * Remove extra whitespace added in untouched function * Added comment and corrected name in error handler * Account for if the user is owner or not in the count * Also check if repo is draft * revert back to the correct count in the ReleasesToDisplay loop * Fixed lint error regarding else with return statement * Use Cond struct instead of string, corrected name in error handler * Removed unused return variable names
* Fix: `http: multiple response.WriteHeader calls` (#2038)Shuanglei Tao2017-06-281-1/+0
| | | We can't change the http status code here, because the response has been written.
* Make time diff translatable (#2057)Lauris BH2017-06-285-10/+10
|
* Fix "Dashboard shows deleted comments" (#1995)Jonas Franz2017-06-252-3/+4
|
* Integration tests for issues API (#2059)Ethan Koenig2017-06-251-15/+13
|
* Load label ID in NewLabels (#2045)Ethan Koenig2017-06-252-2/+2
|
* Fix bug in issue labels API (#2048)Ethan Koenig2017-06-251-2/+2
|
* Fix displaying commits and files of PR created from now deleted fork (#2023)Kim "BKC" Carlbäcker2017-06-221-6/+14
|\ | | | | Fix displaying commits and files of PR created from now deleted fork
| * Fix displaying commits and files of PR created from now deleted forked ↵Lauris Bukšis-Haberkorns2017-06-211-6/+14
| | | | | | | | repository
* | repo/editor: fix breadcrumb path cuts parent dirs (#3859) (#2032)Lunny Xiao2017-06-221-18/+29
| |
* | Display config file path on admin panel (#2030)Lunny Xiao2017-06-221-0/+1
| |
* | Fix #2001 and fix issue comments hidden (#2016)Lunny Xiao2017-06-211-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * revert #2001 and fix issue comments hidden * fix #2001 * fix import * improve comment type * reduce unnecessary join * fix comment on FindCommentsOptions
* | Make branch deletion URL more like GitHub's, fixes #1397 (#1994)Lauris BH2017-06-214-70/+138
|/ | | | | | | | | | | | * Make branch deletion URL more like GitHub's, fixes #1397 * Add PR branch deletion integration test * Do not allow deleting protected branch * Change http error code to 403 if user has no write rights to repository * Add check to not panic if forked repository has alrady been deleted
* Let not-logged-in users view releases (#1999)Ethan Koenig2017-06-182-4/+9
|
* fix misspell (#1996)Bo-Yi Wu2017-06-181-1/+1
| | | Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* Fix deleted milestone bug (#1942)Ethan Koenig2017-06-171-0/+10
| | | | | | | | * Fix deleted milestone bug * Use locale for ghost milestone name * Fix pointer bug
* Separate generate swagger + fix sed os specific (#1791)Antoine GIRARD2017-06-151-4/+0
| | | | | | | | | | | | | | | | | * Separate generate-swagger * Remove go generate rules * Add missing definition replacement + remove use of -i sed flag for compatibility with mac os default sed version. This is a little hacky a better solution could be use. * Use custom SED_INPLACE depending of platform detection * Use SED_INPLACE for swagger-ui also
* Fix search by issue type (#1914)Ethan Koenig2017-06-151-1/+11
| | | | * Fix search by issue type
* Fix uppercase default branch bug (#1965)Ethan Koenig2017-06-141-3/+5
|
* Add repo fork swagger (#1941)Jonas Östanbäck2017-06-121-0/+20
|
* Gracefully handle bare repositories on API operations. (#1932)Dennis Keitzel2017-06-102-1/+11
| | | Signed-off-by: Dennis Keitzel <github@pinshot.net>
* Support CRLF when splitting code lines for display (#1862)silverwind2017-06-101-1/+5
| | | | | | | | | | | | * Support CRLF when splitting code lines for display * refactor, fix mixed match * fmt * split on both LF and CRLF, use raw literals in regexes * simplify
* Fix 500 in public activity page (#1901)Ethan Koenig2017-06-081-1/+5
|
* Cache ctx.User in retrieveFeeds (#1902)Ethan Koenig2017-06-081-0/+3
|
* Merge pull request #1905 from ethantkoenig/fix/org_api_authAndrey Nering2017-06-071-7/+7
|\ | | | | Require token before checking membership/ownership
| * Require token before checking membership/ownershipEthan Koenig2017-06-071-7/+7
| |
* | Merge pull request #1904 from ethantkoenig/fix/org_apiAndrey Nering2017-06-071-10/+23
|\ \ | | | | | | Bug fixes for org member API
| * | Bug fixes for org member APIEthan Koenig2017-06-071-10/+23
| |/
* / A missing / to provide a correct endpointcamlafit2017-06-071-1/+1
|/ | | solve #1899
* feat: add check misspelling (#1877)Bo-Yi Wu2017-06-053-3/+3
|
* gofmt (#1868)Ethan Koenig2017-06-041-1/+0
|
* Fix paginater length (#1866)Ethan Koenig2017-06-041-1/+1
|
* Fix 404 for external tracking issues (#1852)Ethan Koenig2017-06-033-6/+15
| | | | | | * Fix 404 for external tracking issues * Fix 404 for new/upload file
* Display draft releases (#1854)Ethan Koenig2017-06-031-75/+23
| | | | | | | | * Display draft releases * Include ctx.User in user cache * Integration test
* Display all organization from user settings (#1739)Rémy Boulanouar2017-06-022-0/+15
| | | | | | | | | | | | | | * Display all organization from user settings * fix Tab selection * Update locale_en-US.ini * Add a condition for display Create organization button * Remove french translation * Remove unnecessary admin flag
* Fix change introduce by update of go-swagger. (#1727)Antoine GIRARD2017-06-011-0/+1
|
* Fix user profile activity feed (#1848)Ethan Koenig2017-06-022-13/+12
| | | | | | * Fix user profile activity feed * gofmt, and avoid overlapping database connections
* xxx_active_code_live setting in printed in hours and minutes instead … (#1814)Jonas Östanbäck2017-05-294-9/+9
| | | | | | * xxx_active_code_live setting in printed in hours and minutes instead of just hours * Update app.ini description of xxx_code_lives settings
* Add Gitea Webhook (#1755)Rémy Boulanouar2017-05-292-6/+99
| | | | | | | | * Replace Gogs by Gitea * Fix missing changes * Create Gitea webhook and put Gogs webhook apart.
* Merge pull request #1750 from andreynering/dashboard-search-org-reposAndrey Nering2017-05-271-0/+3
|\ | | | | More fixes for dashboard search
| * Fix testAndrey Nering2017-05-181-1/+1
| | | | | | | | There was a panic when there's no logged in user
lue='backport/48871/stable29'>backport/48871/stable29 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | | | | | | | | | | | | | | Update autoloadersLucas Azevedo2023-08-242-2/+6
| * | | | | | | | | | | | | | | | | | | | | Namespace user auth token commandsLucas Azevedo2023-08-244-12/+13
| * | | | | | | | | | | | | | | | | | | | | Use autowiring when registering commandsLucas Azevedo2023-08-241-2/+2
| * | | | | | | | | | | | | | | | | | | | | Filter out sensitive fields in user:auth-tokensLucas Azevedo2023-08-241-1/+10
| * | | | | | | | | | | | | | | | | | | | | Add missing return typesLucas Azevedo2023-08-242-3/+3
| * | | | | | | | | | | | | | | | | | | | | feat: Add user:delete-auth-token commandLucas Azevedo2023-08-232-0/+57
| * | | | | | | | | | | | | | | | | | | | | feat: Add user:auth-tokens commandLucas Azevedo2023-08-232-0/+71
* | | | | | | | | | | | | | | | | | | | | | Fix(l10n): Update translations from TransifexNextcloud bot2023-08-2958-10/+120
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #40079 from nextcloud/techdebt/noid/user-IThrottler-interf...Joas Schilling2023-08-2822-67/+67
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | | | | | techdebt(DI): Use public IThrottler interface which exists since Nextcloud 25Joas Schilling2023-08-2822-67/+67
* | | | | | | | | | | | | | | | | | | | | | | Merge pull request #40077 from nextcloud/bugfix/noid/purge-displayname-cache-...Joas Schilling2023-08-283-0/+16
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | | | fix(cache): Remove displayname cache entry on deleteJoas Schilling2023-08-283-0/+16
| | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #39083 from nextcloud/fix/check-vobject-existenceAndy Scherzinger2023-08-281-3/+22
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | | fix(CalDAV): Check if the vObject exists before attempting any operationsAnna Larch2023-08-281-3/+22
| |/ / / / / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | | | | | Merge pull request #39699 from nextcloud/enh/hide-shares-from-disabled-usersCôme Chilliet2023-08-282-18/+96
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | | | | Use nullsafe call syntax instead of additionnal checkCôme Chilliet2023-08-281-1/+1
| * | | | | | | | | | | | | | | | | | | | | Fix tests, add test for the new featureCôme Chilliet2023-08-281-13/+77
| * | | | | | | | | | | | | | | | | | | | | Set files_sharing:hide_disabled_user_shares to 'yes' to hide shares from disa...Côme Chilliet2023-08-281-5/+19
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #38298 from nextcloud/enh/occ-sync-account-dataAnna2023-08-284-0/+108
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | | feat: Add occ user:sync-account-data for updating oc_accounts information fro...Julius Härtl2023-06-094-0/+108
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #40067 from nextcloud/fix-cancel-files-scanDaniel2023-08-281-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | | | | | fix: make cancelOperation publicDaniel Kesselberg2023-08-271-1/+1
* | | | | | | | | | | | | | | | | | | | | | | Merge pull request #39944 from nextcloud/share-cache-shareRobin Appelman2023-08-282-5/+14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | | | pass the share to the cache instead of having to ask the storageRobin Appelman2023-08-182-5/+14
* | | | | | | | | | | | | | | | | | | | | | | Fix(l10n): Update translations from TransifexNextcloud bot2023-08-28142-2316/+2384
| |/ / / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #39911 from nextcloud/fix/carddav/limit-upgrade-sync-to-10...Daniel2023-08-278-14/+72
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | | | | | fix(CardDAV): only run upgrade sync if 1000 users or lessAnna Larch2023-08-268-14/+72
* | | | | | | | | | | | | | | | | | | | | | | Merge pull request #39792 from nextcloud/feat/vue-filepicker-dialogJohn Molakvoæ2023-08-27134-1310/+657
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | | | | | | chore: Build assetsFerdinand Thiessen2023-08-26117-192/+193
| * | | | | | | | | | | | | | | | | | | | | | | fix(theming): user background pickerJohn Molakvoæ2023-08-265-22/+48
| * | | | | | | | | | | | | | | | | | | | | | | fix(dialogs): Use FilePickerBuilder to create the file pickerFerdinand Thiessen2023-08-261-38/+51
| * | | | | | | | | | | | | | | | | | | | | | | chore: Remove now unneeded filepicker stylesFerdinand Thiessen2023-08-262-268/+0
| * | | | | | | | | | | | | | | | | | | | | | | fix(apps): Adjust apps for FilePicker API changeFerdinand Thiessen2023-08-264-4/+0
| * | | | | | | | | | | | | | | | | | | | | | | chore: Remove unused FilePickerContext from behat testsFerdinand Thiessen2023-08-262-127/+0
| * | | | | | | | | | | | | | | | | | | | | | | fix(cypress): Fix the user theming cypress test for the new filepickerFerdinand Thiessen2023-08-261-4/+18
| * | | | | | | | | | | | | | | | | | | | | | | feat: Add new Vue FilePicker from @nextcloud/dialogs and use it by default.Ferdinand Thiessen2023-08-268-699/+391
| |/ / / / / / / / / / / / / / / / / / / / / /
* / / / / / / / / / / / / / / / / / / / / / / Fix(l10n): Update translations from TransifexNextcloud bot2023-08-276-4/+12
|/ / / / / / / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #40044 from nextcloud/add-altahrim-as-codeownerJoas Schilling2023-08-261-0/+5
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | | | | | Add Altahrïm as code owner for login routes and sharebymail appBenjamin Gaussorgues2023-08-251-0/+5
* | | | | | | | | | | | | | | | | | | | | | | Merge pull request #40057 from nextcloud/dependabot/npm_and_yarn/babel-jest-2...dependabot[bot]2023-08-262-46/+46
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | | | | | | chore(deps-dev): Bump babel-jest from 29.6.2 to 29.6.4dependabot[bot]2023-08-262-46/+46
* | | | | | | | | | | | | | | | | | | | | | | | Merge pull request #40055 from nextcloud/dependabot/npm_and_yarn/babel/preset...dependabot[bot]2023-08-262-18/+18
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | | | | chore(deps-dev): Bump @babel/preset-typescript from 7.22.5 to 7.22.11dependabot[bot]2023-08-262-18/+18
|/ / / / / / / / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | | | | | | | Fix(l10n): Update translations from TransifexNextcloud bot2023-08-2618-14/+94
* | | | | | | | | | | | | | | | | | | | | | | Merge pull request #39842 from nextcloud/encode-filename-trashbin-restoreDaniel2023-08-253-4/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | | | fix: encode basename in restore actionDaniel Kesselberg2023-08-25