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
2017-06-20Change `login_as` uses to `gitlab_sign_in`Robert Speicher
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-06-06Fix test failuresZ.J. van de Weg
2017-05-12Fix specsAnnabel Dunstone Gray
2017-05-05Redirect from redirect routes to canonical routesMichael Kozono
2017-05-05Add happy path feature tests for redirect behaviorMichael Kozono
2017-04-06Fixed rspec testsJose Ivan Vargas
2017-04-03Don't use FFaker in factories, use sequences insteadRémy Coutable
FFaker can generate data that randomly break our test suite. This simplifies our factories and use sequences which are more predictive. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-17Revert "Merge branch '8836-mr-revert' into 'master'Stan Hu
This reverts commit 68e40bd49fde7b790bb31b9ac85a249bedd817d2, reversing changes made to 2d1f823b4c8b60cee525384cb52e547d2be8925a.
2017-03-15Revert "Merge branch 'option-to-be-notified-of-own-activity' into 'master'Stan Hu
This reverts commit 5e9666880376b3f53edb95cba77b5642d3cc1810, reversing changes made to b35378a938e22f745b6c6ea32b53cb50f9b6c627.
2017-03-06apply codestyle and implementation changes to the respective feature codeTiago Botelho
2017-03-01applies relevant changes to the code and code structureTiago Botelho
2017-03-01Add text-warning class in profile settings if the personal_access_token ↵Simon Vocella
expires soon
2017-02-27Updates SSH key title after pasting keyPhil Hughes
Previously it was listening for focusout, it now listens for blur & paste events Closes #28436
2017-02-15Remove all gitlab theme related codeAnnabel Dunstone Gray
2017-02-13Merge branch 'option-to-be-notified-of-own-activity' into 'master' Douwe Maan
Add option to receive email notifications about your own activity See merge request !8836
2017-02-06Fixed some specsPhil Hughes
CHANGELOG item
2017-02-01Use check and uncheck methods from Capybara DSLRichard Macklin
in user_changes_notified_of_own_activity_spec
2017-02-01Add checkbox in UI to opt into receiving notifications about your activityRichard Macklin
2016-12-16Add a controller spec for personal access tokens.Timothy Andrew
Split the existing feature spec into both feature and controller specs. Feature specs assert on browser DOM, and controller specs assert on database state.
2016-12-16Allow creating personal access tokens / OAuth applications with scopes.Timothy Andrew
2016-11-29Edit /spec/features/profiles/preferences_spec.rb to match changes in 084d90acRyan Harris
2016-11-17Add specs for testing authorization and deny of chat userKamil Trzcinski
2016-10-03Convert "SSH Keys" Spinach features to RSpecRobert Speicher
2016-09-13Restore SSH Key title auto-population behaviorRobert Speicher
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/21823
2016-08-13Remove sleeping and replace escaped text.Connor Shea
2016-08-13Updated testsPhil Hughes
2016-08-08Avoid to show the original password field when password is automatically setedCarlos Ribeiro
2016-06-16Implement @DouweM's feedback.Timothy Andrew
- Extract a duplicated `redirect_to` - Fix a typo: "token", not "certificate" - Have the "Expires at" datepicker be attached to a text field, not inline - Have both private tokens and personal access tokens verified in a single "authenticate_from_private_token" method, both in the application and API. Move relevant logic to `User#find_by_personal_access_token` - Remove unnecessary constants relating to API auth. We don't need a separate constant for personal access tokens since the param is the same as for private tokens.
2016-06-14Merge remote-tracking branch 'origin/master' into 2979-personal-access-tokensTimothy Andrew
2016-06-10Fix preferences_spec testAnnabel Dunstone
2016-06-10Implement second round of comments from @jschatz1.Timothy Andrew
- Just use a link for the clipboard button. Having a non-clickable container (that looks like a button) is confusing. - Use `text-danger` for the "you won't be able to access it again" message. - Highlight the created token so people know to look there.
2016-06-09Implement @jschatz1's comments.Timothy Andrew
- No hardcoded colors in any SCSS file except `variables.scss` - Don't allow choosing a date in the past - Use the same table as in the "Applications" tab - The button should say "Create Personal Access Token" - Float the revoke button to the right of the table cell - Change the revocation message to be more explicit. - Date shouldn't look selected on page load - Don't use a panel for the created token - Use a normal flash for "Your new personal access token has been created" - Show the input (with the token) below it full width. - Put the "Make sure you save it - you won't be able to access it again." message near the input - Have the created token's input highlight all on single click
2016-06-03Add tests for errors while creating/revoking personal access tokens.Timothy Andrew
2016-06-03Don't use `natve['innerHTML']` in the feature spec.Timothy Andrew
- The `have_text` matcher works fine.
2016-06-02Only show a personal access token right after its creation.Timothy Andrew
2016-04-28Address @DouweM's feedback on !3749.Timothy Andrew
- Use `TokenAuthenticatable` to generate the personal access token - Remove a check for `authenticity_token` in application controller; this should've been `authentication_token`, maybe, and doesn't make any sense now. - Have the datepicker appear inline
2016-04-28Add feature specs for personal access token management.Timothy Andrew
2016-04-14Add spec for deletion of authorized OAuth2 applicationStan Hu
Closes #14370 Move gon function into its own helper
2015-09-08Use new routing helperDouwe Maan
2015-07-07Add `feature` tag to feature specsRobert Speicher
Not to be confused with the RSpec `type: :feature` tag, this tag is used by the `spec:feature` Rake task for filtering/grouping specs.
2015-06-22Fix features syntaxRobert Speicher
2015-06-15Add `allowing_for_delay` helper method for feature specsRobert Speicher
2015-06-14Add feature specs for default dashboard preferenceRobert Speicher
2015-06-14Simplify the javascript behavior for Preference updatingRobert 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