diff options
author | Tris Forster <tris.git@tfconsulting.com.au> | 2018-05-01 17:04:36 +1000 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-05-01 10:04:36 +0300 |
commit | 85d14cc229263c5788cac9370ac60e9582f9de6c (patch) | |
tree | cd8b7d9505335f86eddfdd3379afb21f414c00c0 /models/fixtures | |
parent | 1928920a08e038e1ec0f631b2f84f5610638209f (diff) | |
download | gitea-85d14cc229263c5788cac9370ac60e9582f9de6c.tar.gz gitea-85d14cc229263c5788cac9370ac60e9582f9de6c.zip |
Symlink icons (#1416) (#3826)
* Updated vendor code for code.gitea.io/git
* Display symlinks correctly for files and directories
* Added symlink tests
* Applied silverwinds stylesheet patch
Signed-off-by: Tris Forster <tris.git@shoddynet.org>
Diffstat (limited to 'models/fixtures')
-rw-r--r-- | models/fixtures/repo_unit.yml | 7 | ||||
-rw-r--r-- | models/fixtures/repository.yml | 12 | ||||
-rw-r--r-- | models/fixtures/user.yml | 4 |
3 files changed, 20 insertions, 3 deletions
diff --git a/models/fixtures/repo_unit.yml b/models/fixtures/repo_unit.yml index 45229cce37..6780de7531 100644 --- a/models/fixtures/repo_unit.yml +++ b/models/fixtures/repo_unit.yml @@ -67,3 +67,10 @@ type: 5 config: "{}" created_unix: 946684810 + +- + id: 11 + repo_id: 31 + type: 1 + config: "{}" + created_unix: 1524304355 diff --git a/models/fixtures/repository.yml b/models/fixtures/repository.yml index 91342d076e..c7d73fe17d 100644 --- a/models/fixtures/repository.yml +++ b/models/fixtures/repository.yml @@ -378,4 +378,14 @@ num_pulls: 0 num_closed_pulls: 0 is_mirror: false - is_fork: true
\ No newline at end of file + is_fork: true + +- + id: 31 + owner_id: 2 + lower_name: repo20 + name: repo20 + num_stars: 0 + num_forks: 0 + num_issues: 0 + is_mirror: false diff --git a/models/fixtures/user.yml b/models/fixtures/user.yml index 60f5e8405a..7ad48f7fbe 100644 --- a/models/fixtures/user.yml +++ b/models/fixtures/user.yml @@ -27,7 +27,7 @@ is_admin: false avatar: avatar2 avatar_email: user2@example.com - num_repos: 4 + num_repos: 5 num_stars: 2 num_followers: 2 num_following: 1 @@ -313,4 +313,4 @@ avatar: avatar20 avatar_email: user20@example.com num_repos: 4 - is_active: true
\ No newline at end of file + is_active: true |