<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/controllers/sessions_controller.rb, branch diff-notes-refactor</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Enable Style/MultilineOperationIndentation in Rubocop, fixes #25741</title>
<updated>2016-12-16T18:37:22+00:00</updated>
<author>
<name>Rydkin Maxim</name>
<email>maks.rydkin@gmail.com</email>
</author>
<published>2016-12-15T22:14:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=170efaaba273792ddffc2806ef1501f33d87a5a2'/>
<id>170efaaba273792ddffc2806ef1501f33d87a5a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: removed signed_out notification</title>
<updated>2016-12-12T09:34:48+00:00</updated>
<author>
<name>jnoortheen</name>
<email>jnoortheen@gmail.com</email>
</author>
<published>2016-12-06T17:02:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3c36d9dc9b3c2db45df6dce19357e9c4bdde366f'/>
<id>3c36d9dc9b3c2db45df6dce19357e9c4bdde366f</id>
<content type='text'>
test: replaced signed_out message check with check for sign_in button

fixes #25294
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
test: replaced signed_out message check with check for sign_in button

fixes #25294
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: 24982- Remove'Signed in successfully' message</title>
<updated>2016-12-07T15:00:28+00:00</updated>
<author>
<name>jnoortheen</name>
<email>jnoortheen@gmail.com</email>
</author>
<published>2016-11-29T16:31:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6ab74b1cb3f6982c52c7124a6e9e451c83d33645'/>
<id>6ab74b1cb3f6982c52c7124a6e9e451c83d33645</id>
<content type='text'>
After this change the sign-in-success flash message will not be shown

refactor: set flash message to be nil while signing in

test: changed tests to reflect removal of sign-in message

refactor: adding signed_in message back

See Merge Request !7837

issue#24982
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After this change the sign-in-success flash message will not be shown

refactor: set flash message to be nil while signing in

test: changed tests to reflect removal of sign-in message

refactor: adding signed_in message back

See Merge Request !7837

issue#24982
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove provider path, replace with dynamic path.</title>
<updated>2016-08-03T17:50:38+00:00</updated>
<author>
<name>Connor Shea</name>
<email>connor.james.shea@gmail.com</email>
</author>
<published>2016-07-25T17:40:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=602fe111912bac119e752b0dfa3b4b3cd81585ff'/>
<id>602fe111912bac119e752b0dfa3b4b3cd81585ff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add an oauth provider path helper.</title>
<updated>2016-08-03T17:50:29+00:00</updated>
<author>
<name>Connor Shea</name>
<email>connor.james.shea@gmail.com</email>
</author>
<published>2016-07-18T21:14:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e8c6f119cd7cf519db3ad1622786aad3156324d4'/>
<id>e8c6f119cd7cf519db3ad1622786aad3156324d4</id>
<content type='text'>
The helper constructs the path for a given oauth provider since Devise 4.0 deprecated passing the provider to the omniauth authentication path.

Fixes #18110.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The helper constructs the path for a given oauth provider since Devise 4.0 deprecated passing the provider to the omniauth authentication path.

Fixes #18110.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '18225-avoid-full-table-users-count' into 'master'</title>
<updated>2016-06-15T15:12:56+00:00</updated>
<author>
<name>Jacob Vosmaer (GitLab)</name>
<email>jacob@gitlab.com</email>
</author>
<published>2016-06-15T15:12:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2f459a03e00deb21bd774cb91dc0749b2e7c8905'/>
<id>2f459a03e00deb21bd774cb91dc0749b2e7c8905</id>
<content type='text'>

Check if the Users table has exactly one user limiting the whole set

## What does this MR do?

Limit the query set so about a full scan for all the rows on the users table (only scan to records)

#18225 

See merge request !4492</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Check if the Users table has exactly one user limiting the whole set

## What does this MR do?

Limit the query set so about a full scan for all the rows on the users table (only scan to records)

#18225 

See merge request !4492</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'password-min-length-placeholder' into 'master'</title>
<updated>2016-06-08T19:48:03+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>robert@gitlab.com</email>
</author>
<published>2016-06-08T19:48:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d74e93ce46f1ca3f23e5011138f77ad64e316d11'/>
<id>d74e93ce46f1ca3f23e5011138f77ad64e316d11</id>
<content type='text'>

Added minimum password length to password field

Add a placeholder to the password field in the register form with the minimum number of characters required. Also added a pattern to the field to stop it submitting if less than that.

Closes #17765

See merge request !4458</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Added minimum password length to password field

Add a placeholder to the password field in the register form with the minimum number of characters required. Also added a pattern to the field to stop it submitting if less than that.

Closes #17765

See merge request !4458</pre>
</div>
</content>
</entry>
<entry>
<title>Check if the Users table has exactly one user limiting the whole set</title>
<updated>2016-06-06T13:51:56+00:00</updated>
<author>
<name>Paco Guzman</name>
<email>pacoguzmanp@gmail.com</email>
</author>
<published>2016-06-06T13:50:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3b21174d32695d10124bd4d582db14947bf4162d'/>
<id>3b21174d32695d10124bd4d582db14947bf4162d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a U2F-specific audit log entry after logging in.</title>
<updated>2016-06-06T07:20:31+00:00</updated>
<author>
<name>Timothy Andrew</name>
<email>mail@timothyandrew.net</email>
</author>
<published>2016-06-06T04:52:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4db19bb4455cd21e80097a3e547d8b266a884aea'/>
<id>4db19bb4455cd21e80097a3e547d8b266a884aea</id>
<content type='text'>
- "two-factor" for OTP-based 2FA
- "two-factor-via-u2f-device" for U2F-based 2FA
- "standard" for non-2FA login
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- "two-factor" for OTP-based 2FA
- "two-factor-via-u2f-device" for U2F-based 2FA
- "standard" for non-2FA login
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement authentication (login) using a U2F device.</title>
<updated>2016-06-06T07:20:31+00:00</updated>
<author>
<name>Timothy Andrew</name>
<email>mail@timothyandrew.net</email>
</author>
<published>2016-06-06T04:50:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=86b07caa599a7f064e9077770b1a87c670d7607c'/>
<id>86b07caa599a7f064e9077770b1a87c670d7607c</id>
<content type='text'>
- Move the `authenticate_with_two_factor` method from
  `ApplicationController` to the `AuthenticatesWithTwoFactor` module,
  where it should be.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Move the `authenticate_with_two_factor` method from
  `ApplicationController` to the `AuthenticatesWithTwoFactor` module,
  where it should be.
</pre>
</div>
</content>
</entry>
</feed>
