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
path: root/config
AgeCommit message (Collapse)Author
2015-08-05ink to configured gravatar host on profile pageBen Bodenmiller
2015-08-03Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets
2015-07-31Bump redis-store to 1.1.6 and remove redid-store-fix-expiryKamil Trzcinski
2015-07-29Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq into ↵Jacob Vosmaer
backup-archive-permissions
2015-07-27Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq into ↵Jacob Vosmaer
backup-archive-permissions
2015-07-24Remove weird trailing charactersJacob Vosmaer
2015-07-24Use a separate backup test directory and nuke its contentsJacob Vosmaer
2015-07-23Allow custom label to be set for authentication providers.Douwe Maan
2015-07-20Merge branch 'set-omniauth-full-host' into 'master'Marin Jankovski
Set OmniAuth full_host parameter to ensure redirect URIs are correct ### What does this MR do? This MR sets the OmniAuth `full_host` parameter to the configured GitLab URL to ensure the `redirect_uri` parameter is called with the right GitLab host. ### Why was this MR needed? [OmniAuth attempts to grab the request URI](http://awesomeprogrammer.com/blog/2012/12/09/dealing-with-omniauth-redirect-uri-mismatch-invalid-port-number-gotcha/) and use that. If you set up a reverse proxy that terminates SSL at the Web server layer (e.g. https://gitlab.domain.com), omniauth will use the internal URL (e.g. http://my-host:8080) in its redirect URI unless all the Web server headers are properly set (e.g. `X-Forwarded-Port`, etc.). This is easy to forget or mess up, and it's better to ensure that OmniAuth has the right value from the start. ### What are the relevant issue numbers? Closes #1967 See merge request !991
2015-07-19Fix OAuth provider bug where GitLab would not go return to the redirect_uri ↵Stan Hu
after sign-in Closes #1612
2015-07-18Set OmniAuth full_host parameter to ensure redirect URIs are correctStan Hu
Closes #1967
2015-07-17Merge branch 'add-support-remove-milestone' into 'master'Stan Hu
Add support for destroying project milestones ### What does this MR do? This MR adds a "Remove" button to the project milestones page and the milestone page itself. ### Why was this MR needed? Because lots of people talked about needing to clean their toilets. :) ### What are the relevant issue numbers? Closes https://github.com/gitlabhq/gitlabhq/issues/1504 ### Screenshots ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/ef8c7a3ea1db7b37cccae3869ac4de0a/image.png) ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/33eb01c7bc30fb235de96db5efb8746d/image.png) See merge request !980
2015-07-17Add support for destroying project milestonesStan Hu
Closes https://github.com/gitlabhq/gitlabhq/issues/1504
2015-07-15Expire Rails cache entries after two weeksJacob Vosmaer
This should help prevent endless Redis growth.
2015-07-11Add disable_two_factor route for Admin::UsersRobert Speicher
2015-07-07Move project activity to separate tab. Add more features to project home pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-07-06Allow custom backup archive permissionsJacob Vosmaer
This change helps system administrators who want to replicate GitLab backup files without needing root permissions.
2015-07-06Merge branch 'audit_log' into 'master'Dmitriy Zaporozhets
Audit log for user authentication https://dev.gitlab.org/gitlab/gitlabhq/issues/2318 See merge request !931
2015-07-06Audit log for user authenticationValery Sizov
2015-07-02Add support for unlocking users in admin settingsStan Hu
Closes https://github.com/gitlabhq/gitlabhq/issues/9381
2015-06-24Enable rack profiler by defaultDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-22Refactor admin user pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-19Move identities list to own controller actionDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-19Add ability for admin to edit user identityDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-19Admin can see and remove user identitiesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-16Use explicit if.Marin Jankovski
2015-06-15If kerberos is enabled require it.Marin Jankovski
2015-06-14Add RootControllerRobert Speicher
This controller is now the target for `root_url`. It sub-classes DashboardController so we can render the old default without a redirect if the user hasn't customized their dashboard location.
2015-06-14Fix a few remaining references to the old Theme names/IDsRobert Speicher
2015-06-14Add Gitlab::Themes module; remove Gitlab::ThemeRobert Speicher
Now we can simply loop through all themes, among other things. This also removes the `dark_theme` / `light_theme` classes and the `theme_type` helper, since they weren't used anywhere.
2015-06-14Move the "Design" templates and logic to PreferencesRobert Speicher
2015-06-14Add Profiles::PreferencesControllerRobert Speicher
2015-06-13Ensure `session_expire_delay` field exists before accessing itRobert Speicher
Closes #1798
2015-06-12Merge branch 'feature-session-expire-seconds-ui' into 'master'Douwe Maan
Add session expiration delay configuration through UI application Setting is accessible by the administrator through the UI and defaults to 1 week (the current setting) Answers the following suggestions: * http://feedback.gitlab.com/forums/176466-general/suggestions/6210719-make-session-length-configurable * http://feedback.gitlab.com/forums/176466-general/suggestions/6730512-automatic-logout-after-a-time-being-idle See merge request !774
2015-06-11Add a note that changing example configuration files requires changing ↵Marin Jankovski
omnibus-gitlab.
2015-06-11session_expire_seconds => session_expire_delaythemaze75
delay is in seconds more legible code in session_store Added `GitLab restart required` help block to session_expire_delay
2015-06-09remove extra spaceJeroen Nijhof
2015-06-09update fog to 1.25.0 and add multipart upload supportJeroen Nijhof
2015-06-05Add session expiration delay configuration through UI applicationEric Maziade
settings
2015-06-05Merge branch 'cernvcs/gitlab-ce-feature/auto_link_ldap_omniauth'Douwe Maan
2015-06-04Remove show actions from Admin and Project DeployKeysRobert Speicher
2015-06-03Add option to automatically link omniauth and LDAP identitiesAlex Lossent
Until now, a user needed to first sign in with his LDAP identity and then manually link his/her account with an omniauth identity from their profile. Only when this is done can the user authenticate with the omniauth provider and at the same time benefit from the LDAP integration (HTTPS authentication with LDAP username/password and in EE: LDAP groups, SSH keys etc.). This feature automates the process by looking up a corresponding LDAP person when a user connects with omniauth for the first time and then automatically linking the LDAP and omniauth identities (of course, like the existing allow_single_sign_on setting, this is meant to be used with trusted omniauth providers). The result is identical to a manual account link. Add config initializers for other omniauth settings.
2015-05-29Add an option to automatically sign-in with an Omniauth provider without ↵Alex Lossent
showing the GitLab sign-in page This is useful when integrating with existing SSO environments and we want to use a single Omniauth provider for all user authentication.
2015-05-29Merge branch 'feature/saml_support' into 'master'Douwe Maan
Add SAML support via Omniauth Split of !669, with doc See merge request !722
2015-05-29Merge branch 'rs-teaspoon' into 'master'Dmitriy Zaporozhets
Add Teaspoon for Javascript testing Looking to expand our Javascript unit tests, and this gem makes things a bit better in that respect. See https://github.com/modeset/teaspoon See merge request !715
2015-05-29Add MergeRequests#commits action and routeRobert Speicher
/:namespace_id/:project_id/merge_requests/:id/commits(.:format)
2015-05-29Disable Rack::MiniProfiler for /teaspoon pathRobert Speicher
2015-05-29Remove jasmine-rails; add teaspoonRobert Speicher
2015-05-27Add SAML support via OmniauthAlex Lossent
2015-05-16Allow to configure gitlab_shell_secret locationJakub Jirutka