| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Annotate models | Stan Hu | 2016-01-06 | 1 | -2/+13 |
| | | |||||
| * | reCAPTCHA is configurable through Admin Settings, no reload needed. | Gabriel Mazetto | 2015-12-28 | 1 | -10/+18 |
| | | |||||
| * | WIP require two factor authentication | Gabriel Mazetto | 2015-12-24 | 1 | -26/+33 |
| | | |||||
| * | Use method that creates runners registration token | Grzegorz Bizon | 2015-12-23 | 1 | -0/+4 |
| | | | | | `runners_registration_token` now creates a new token if it is blank. | ||||
| * | Fixed Rubocop offenses | Gabriel Mazetto | 2015-12-15 | 1 | -6/+6 |
| | | |||||
| * | Ensure that app settings contains runners registration token | Grzegorz Bizon | 2015-12-11 | 1 | -0/+2 |
| | | |||||
| * | Refactor `TokenAuthenticatable` to improve reusability | Grzegorz Bizon | 2015-12-11 | 1 | -0/+3 |
| | | | | | | | | This adds a ability to use multiple different authentication token fields in other models. From now on it is necessary to add authentication token field manually in each class that implements this mixin. | ||||
| * | Add `runners_registration_token` to ApplicationSettings | Grzegorz Bizon | 2015-12-11 | 1 | -1/+1 |
| | | |||||
| * | Add custom UrlValidator | Robert Speicher | 2015-12-07 | 1 | -2/+2 |
| | | |||||
| * | Fix application settings cache not expiring after changes | Stan Hu | 2015-12-04 | 1 | -7/+5 |
| | | | | | | | | cache_key is an instance method that relies on updated_at. When changes were made, the time-dependent key was being used instead of X.application_setting.last. Closes #3609 | ||||
| * | Expire application settings from cache at startup | Stan Hu | 2015-11-25 | 1 | -2/+10 |
| | | | | | | | | | If a DB migration occurs, there's a chance that the application settings are loaded from the cache and provide stale values, causing Error 500s. This ensures that at startup the settings are always refreshed. Closes #3643 | ||||
| * | Expose artifacts pathci-artifacts-path | Kamil Trzcinski | 2015-11-23 | 1 | -1/+1 |
| | | |||||
| * | Annotate models | Dmitriy Zaporozhets | 2015-11-13 | 1 | -0/+4 |
| | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | Merge pull request #9825 from huacnlee/cache-application-setting | Dmitriy Zaporozhets | 2015-11-13 | 1 | -1/+7 |
| |\ | | | | | Add caching for ApplicationSetting, Ci::ApplicationSetting. | ||||
| | * | Add caching for ApplicationSetting, Ci::ApplicationSetting. | Jason Lee | 2015-11-12 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | | | | | | ApplicationSetting.current was called in every pages, cache it and expires it after it updated. This changes will avoid a SQL query in every pages (~0.3 - 0.5ms). ```SQL SELECT "application_settings".* FROM "application_settings" ORDER BY "application_settings"."id" DESC LIMIT 1 ``` | ||||
| * | | Implement Build Artifacts | Kamil Trzcinski | 2015-11-10 | 1 | -0/+1 |
| |/ | | | | | | | - Offloads uploading to GitLab Workhorse - Use /authorize request for fast uploading - Added backup recipes for artifacts - Support download acceleration using X-Sendfile | ||||
| * | Enable shared runners for all new projects | Kamil Trzcinski | 2015-11-05 | 1 | -1/+2 |
| | | |||||
| * | Validate admin notification email. | Douwe Maan | 2015-10-18 | 1 | -0/+4 |
| | | |||||
| * | Remove the option to disable CIrs-remove-ci-disable | Robert Speicher | 2015-10-05 | 1 | -2/+1 |
| | | | | | | | This option only existed to ease the CI-to-CE/EE migration process. This commit partially reverts 8b05abe816b0c681ac218096b294311dd04fde8b | ||||
| * | Allow to disable GitLab CI | Kamil Trzcinski | 2015-09-18 | 1 | -1/+2 |
| | | |||||
| * | FogBugz project import | Jared Szechy | 2015-09-08 | 1 | -1/+1 |
| | | |||||
| * | Import sources: settings in the admin interface | Artem Sidorenko | 2015-08-20 | 1 | -1/+14 |
| | | |||||
| * | Re-annotate models | Atsushi Ishida | 2015-08-03 | 1 | -2/+3 |
| | | |||||
| * | Ensure `session_expire_delay` field exists before accessing itrs-issue-1798 | Robert Speicher | 2015-06-13 | 1 | -4/+4 |
| | | | | | Closes #1798 | ||||
| * | session_expire_seconds => session_expire_delay | themaze75 | 2015-06-10 | 1 | -2/+6 |
| | | | | | | delay is in seconds more legible code in session_store Added `GitLab restart required` help block to session_expire_delay | ||||
| * | Add session expiration delay configuration through UI application | Eric Maziade | 2015-06-05 | 1 | -0/+2 |
| | | | | settings | ||||
| * | Allow to configure a URL to show after sign out | Alex Lossent | 2015-05-29 | 1 | -0/+5 |
| | | |||||
| * | Add option to disallow users from registering any application to use GitLab ↵user-oauth-applications | Douwe Maan | 2015-05-29 | 1 | -0/+1 |
| | | | | | as an OAuth provider | ||||
| * | Re-annotate models | Stan Hu | 2015-05-03 | 1 | -4/+3 |
| | | |||||
| * | Add application setting to restrict user signups to e-mail domains | Stan Hu | 2015-05-02 | 1 | -2/+22 |
| | | | | | | | | | | | | This feature was requested long ago: http://feedback.gitlab.com/forums/176466-general/suggestions/4118466-ability-to-register-only-from-ceratain-domains This MR is based off !253 but changed to use application settings and use wildcard strings to give more flexibility in pattern matching. Regexps seemed overkill and easy to get wrong. Only restrict e-mail addresses upon creation | ||||
| * | Add new admin settings | Vinnie Okada | 2015-04-26 | 1 | -1/+5 |
| | | | | | | Add new global application settings for default project and snippet visibility levels. | ||||
| * | Don't use URI.regexp to validate since it doens't have start/end anchors. | Douwe Maan | 2015-04-11 | 1 | -1/+1 |
| | | |||||
| * | Support configurable attachment size via Application Settings | Stan Hu | 2015-04-02 | 1 | -1/+3 |
| | | | | | | | Fix bug where error messages from Dropzone would not be displayed on the issues page Closes #1258 | ||||
| * | Fix restricted visibility bugs | Vinnie Okada | 2015-03-16 | 1 | -3/+5 |
| | | | | | | | Check for nil values in the restricted_visibility_level validation method, and set the restricted visibility request parameter to `[]` when it's missing from the request. | ||||
| * | Move restricted visibility settings to the UI | Vinnie Okada | 2015-03-07 | 1 | -11/+25 |
| | | | | | | Add checkboxes to the application settings page for restricted visibility levels, and remove those settings from gitlab.yml. | ||||
| * | Re-annotate models | Dmitriy Zaporozhets | 2015-03-04 | 1 | -11/+11 |
| | | |||||
| * | Add link to share via twitter to "created project" event. | Douwe Maan | 2015-02-13 | 1 | -0/+2 |
| | | |||||
| * | Merge branch 'master' into mwessel/gitlab-ce-configure-protection | Dmitriy Zaporozhets | 2015-02-03 | 1 | -1/+2 |
| |\ | |||||
| | * | Rubocop: Style/AlignHash enabled | Dmitriy Zaporozhets | 2015-02-02 | 1 | -1/+2 |
| | | | |||||
| * | | Allow configuring protection of the default branch upon first push | Marco Wessel | 2015-01-25 | 1 | -0/+2 |
| |/ | |||||
| * | Annotate models | Dmitriy Zaporozhets | 2015-01-22 | 1 | -0/+15 |
| | | |||||
| * | Validate application settings only if column exists | Dmitriy Zaporozhets | 2015-01-16 | 1 | -1/+6 |
| | | |||||
| * | Allow to specify home page for non logged-in users | Dmitriy Zaporozhets | 2015-01-16 | 1 | -0/+3 |
| | | |||||
| * | Create ApplicationSettings if does not exist in runtime | Dmitriy Zaporozhets | 2015-01-08 | 1 | -0/+10 |
| | | |||||
| * | Init ApplicationSettings resource with defaults from config file | Dmitriy Zaporozhets | 2015-01-08 | 1 | -0/+5 |
