06 Sep, 2012
3 commits
-
Emoji!
-
Was "User has already been taken", is now "User already exists in project".
05 Sep, 2012
2 commits
-
default_branch now defaults to nil, not 'master'. It will be set after the first push by discover_default_branch.
02 Sep, 2012
1 commit
-
Instead of doing this: link_to(commit.id, project_commit_path(project, id: commit.id)) Note.create(noteable_id: commit.id, noteable_type: "Commit", ...) It lets us do this: link_to(commit.id, project_commit_path(project, commit)) Note.create(noteable: commit, ...)
30 Aug, 2012
2 commits
29 Aug, 2012
3 commits
-
Simplified gitolite handle logic Stubn over monkeypatch Stub only specific methods in Gitlab:Gitolite Moved grach auth to lib added specs for keys observer removes SshKey role
25 Aug, 2012
1 commit
-
Back-ported from my still-in-progress major cleanup.
23 Aug, 2012
1 commit
-
Show only the commits that are newer in the merge request.
21 Aug, 2012
3 commits
-
Conflicts: app/models/user.rb
20 Aug, 2012
1 commit
17 Aug, 2012
1 commit
13 Aug, 2012
1 commit
10 Aug, 2012
1 commit
-
Didn't bother with files in db/, config/, or features/
08 Aug, 2012
2 commits
-
Any associations, validations, delegates, scopes and methods that were exactly the same in both Issue and MergeRequest models have been moved to a new IssueCommonality module (role) that gets included by each class. There was actually quite a bit of duplication, because MergeRequests are basically just specialized Issues.
05 Aug, 2012
1 commit
02 Aug, 2012
1 commit
29 Jul, 2012
2 commits
27 Jul, 2012
1 commit
25 Jul, 2012
1 commit
-
…eingidog-add_wiki_comments Conflicts: app/controllers/admin/mailer_controller.rb app/controllers/notes_controller.rb
20 Jul, 2012
3 commits
-
Controllers refactoring with contexts Move commit compare logic to model
19 Jul, 2012
5 commits
18 Jul, 2012
1 commit
-
Improve handling of misconfigured LDAP accounts.
17 Jul, 2012
2 commits
16 Jul, 2012
1 commit
-
Gitlab requires an email address for all user accounts as this is the default account id and is used for sending notifications. LDAP accounts may be missing email fields so handle this by showing a sensible error message before redirecting to the login screen again. Resolves github issue #899 Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>