- 06 Jul, 2017 40 commits
-
-
Toon Claes authored
Make sure that EE acts as CE when there is no valid license. So reactivate the original CE specs and put the licensed EE specs in separate files.
-
Toon Claes authored
Using this helper will make it easier in the future to find all places where the TestLicense is activated or deactivated.
-
Toon Claes authored
-
Toon Claes authored
And bring back in sync with CE.
-
Toon Claes authored
-
Toon Claes authored
Depending if Multiple Issue Assignees are enabled, make it possible to assign multiple users to an issue.
-
Toon Claes authored
-
Toon Claes authored
-
Toon Claes authored
-
Toon Claes authored
Set the assignee to last user in the array if multiple assignees aren't allowed. Also, use `parse_params` where possible.
-
Toon Claes authored
To make it simpler to assign users to an Issuable, make MergeRequest support the attribute `assignee_ids`.
-
Toon Claes authored
The /reassign quick command should work even when no multiple assignees are allowed of there isn't any assignee yet. For consistency, it will also be backported to CE. The functionality will be the same as the /assign quick action.
-
Toon Claes authored
The /reassign slash command only is used in EE, so move it outside the shared code to avoid merge conflicts.
-
Toon Claes authored
The list of attributes for the filtered search input was getting long, so use a helper method to fill that hash. Also, for multiple issue assignees, a helper is more convenient because it would allow EE to override the behavior if MIA is supported.
-
Luke "Jared" Bennett authored
Pass multiple assignee availability boolean to FE and set for use in FilteredSearchTokenKeysIssuesEE
-
Toon Claes authored
Instead of checking in `SlashCommands::InterpretService` what the issuable the type of the issuable is, ask the issuable if it is capable to do those thing and implement it in the issuable itself. The issuable will check if it's possible and if the licensed feature is available. This should also make it easier to ever add multiple assignees to MergeRequests.
-
Toon Claes authored
Depending if Multiple Issue Assignees are enabled, make it possible to assign multiple users to an issue.
-
Toon Claes authored
Instead of telling the `FormHelper#issue_assignees_dropdown_options` if there are multiple assignees enabled, make it figure it out itself. The implementation for CE will never have multiple assignees. `EE::FormHelper#issue_assignees_dropdown_options` will have it if the feature is enabled in the license.
-
Toon Claes authored
-
Douwe Maan authored
Fix EE conflicts for 'Fix `migration:path` build for "Honor the 'Remember me' parameter for OAuth-based login"' See merge request !2355
-
Marin Jankovski authored
Update alpha database documentation to reflect change in attribute See merge request !2252
-
Phil Hughes authored
Improve state management for deploy boards with realtime data Closes #2677 See merge request !2311
-
Filipa Lacerda authored
-
Sean McGivern authored
EE: Add foreign keys to various tables that point to the "projects" table See merge request !2223
-
Job van der Voort authored
Add overview and use cases for db load balancing docs See merge request !2342
-
Achilleas Pipinellis authored
-
Yorick Peterse authored
This cop has been renamed to ActiveRecordSerialize to match the way "ActiveRecord" is usually written.
-
Yorick Peterse authored
These are specific to EE and a whole bunch of these can be fixed by just removing the `dependent:` option since we now have more foreign keys in place.
-
Yorick Peterse authored
This adds various missing foreign keys (with cascading deletes) that either point directly or indirectly to the "projects" table.
-
Yorick Peterse authored
These IDs point to non-existing rows, causing the foreign key constraints to fail.
-
Yorick Peterse authored
This is allowed for existing instances so we don't end up 76 offenses right away, but for new code one should _only_ use this if they _have_ to remove non database data. Even then it's usually better to do this in a service class as this gives you more control over how to remove the data (e.g. in bulk).
-
Yorick Peterse authored
This removes the need for relying on Rails' "dependent" option for data removal, which is _incredibly_ slow (even when using :delete_all) when deleting large amounts of data. This also ensures data consistency is enforced on DB level and not on application level (something Rails is really bad at). This commit also includes various migrations to add foreign keys to tables that eventually point to "projects" to ensure no rows get orphaned upon removing a project.
-
Job van der Voort authored
Add use cases for issues-related EE features Closes #2810 See merge request !2330
-
Marcia Ramos authored
-
Job van der Voort authored
Add docs for Pivotal tile installation See merge request !2341
-
Job van der Voort authored
Update Auditor users docs See merge request !2333
-
Achilleas Pipinellis authored
-
Timothy Andrew authored
- This is causing autoload-related errors in the `migration:path` builds. We need to find a better way of testing this provider.
-
Timothy Andrew authored
-
Timothy Andrew authored
- Don't use `request.env['omniauth.params']` if it isn't present. - Remove the `saml` section from the `gitlab.yml` test section. Some tests depend on this section not being initially present, so it can be overridden in the test. This MR doesn't add any tests for SAML, so we didn't really need this in the first place anyway. - Clean up the test -> omniauth section of `gitlab.yml`
-