Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-13Add latest changes from gitlab-org/security/gitlab@13-7-stable-eeGitLab Bot
2021-01-06Add latest changes from gitlab-org/security/gitlab@13-7-stable-eeGitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-08-05Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-05-26Add latest changes from gitlab-org/security/gitlab@13-0-stable-eeGitLab Bot
2020-04-27Add latest changes from gitlab-org/security/gitlab@12-10-stable-eeGitLab Bot
2020-02-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2018-11-29Merge branch 'security-fix-uri-xss-applications' into 'master'Cindy Pallares
[master] Resolve "Reflected XSS in OAuth Authorize window due to redirect_uri allowing arbitrary protocols" See merge request gitlab/gitlabhq!2572
2018-11-01Fix typos in comments and specsGeorge Tsiolis
2018-09-23Enable more frozen string in app/controllers/gfyoung
Enables frozen string for the following: * app/controllers/dashboard/**/*.rb * app/controllers/explore/**/*.rb * app/controllers/google_api/**/*.rb * app/controllers/groups/**/*.rb * app/controllers/import/**/*.rb * app/controllers/instance_statistics/**/*.rb * app/controllers/ldap/**/*.rb * app/controllers/oauth/**/*.rb * app/controllers/profiles/**/*.rb Partially addresses #47424.
2018-09-20Always allow user to revoke an authorized applicationDmitriy Zaporozhets
Even if User OAuth applications setting is disabled in admin settings. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-02-22Port `read_cross_project` ability from EEBob Van Landuyt
2018-02-02use Gitlab::UserSettings directly as a singleton instead of ↵Mario de la Ossa
including/extending it
2017-10-31refactor codeJames Lopez
2017-10-31fix spinach failureJames Lopez
2017-10-31add applications controller logicJames Lopez
2017-09-28refactor some controllers to make them EE friendlyJames Lopez
2017-06-07Add a rubocop rule to check if a method 'redirect_to' is used without ↵blackst0ne
explicitly set 'status' in 'destroy' actions of controllers
2017-03-07Remove duplicated code in Oauth::AuthorizationsControllerMarkus Koller
2016-12-16Implement minor changes from @dbalexandre's review.Timothy Andrew
- Mainly whitespace changes. - Require the migration adding the `scope` column to the `personal_access_tokens` table to have downtime, since API calls will fail if the new code is in place, but the migration hasn't run. - Minor refactoring - load `@scopes` in a `before_action`, since we're doing it in three different places.
2016-12-16Allow creating personal access tokens / OAuth applications with scopes.Timothy Andrew
2016-06-08Fix endless redirections when accessing user OAuth applications when they ↵Stan Hu
are disabled Also hides the "Applications" nav button if OAuth applications are disabled by the admin. Closes #14770
2016-04-14Include GonHelper separately and remove created_at in factoryStan Hu
2016-04-14Add spec for deletion of authorized OAuth2 applicationStan Hu
Closes #14370 Move gon function into its own helper
2016-03-19Merge branch 'fix/gitlab-omniauth-issue' into 'master' Douwe Maan
attempting to fix omniauth problem Attempt to fix https://gitlab.com/gitlab-org/gitlab-ce/issues/3361 See merge request !2876
2016-03-13Let `oauth/applications#index` handle the `profiles#applications` routeRobert Speicher
Previously we were doing all of kinds of code gymnastics and flash abuse in order to work with a Doorkeeper controller but have it _appear_ at the `/profile/applications` path. Fortunately we can just tell Rails to use a different controller to handle that route, and we get the best of both worlds.
2016-03-04Fixed Ruby style errorPhil Hughes
2016-03-04Applications tab on profile settingsPhil Hughes
Closes #13855
2016-02-19another attempt to fix oauth issueJames Lopez
2016-02-18attempting to fix omniauth problemJames Lopez
2015-09-09Move helpers back to original directoryDmitriy Zaporozhets
2015-08-26Groundwork for merging CI into CEDouwe Maan
2015-07-02Correctly show anonymous authorized applications under Profile > Applications.Douwe Maan
2015-05-29Add option to disallow users from registering any application to use GitLab ↵Douwe Maan
as an OAuth provider
2015-05-01Add helpers for header title and sidebar, and move setting those from ↵Douwe Maan
controllers to layouts.
2015-04-30before_action > before_filter.Douwe Maan
2015-04-30Add a page title to every page.Douwe Maan
2015-04-20Fixed the Rails/ActionFilter copJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-01-18Application admin scaffoldValery Sizov
2014-12-25Fix tests and add message if no oauth appsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-12-25Rework oauth2 featureDmitriy Zaporozhets
* improve UI * add authorization * add separate page for oauth applications Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-12-25Improve code styleDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-12-24Doorkeeper integrationValery Sizov