diff options
author | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-02-02 20:33:36 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-02-02 20:33:36 +0800 |
commit | d7d094bd8a5520b758f34d3fb0439c6a1ddb39d3 (patch) | |
tree | f8ba37fee85af46ad98b815fa70574ad3dbec9f2 /models/fixtures | |
parent | 2db0ffe69ef80def358b96ff2c3804c79c9174c3 (diff) | |
download | gitea-d7d094bd8a5520b758f34d3fb0439c6a1ddb39d3.tar.gz gitea-d7d094bd8a5520b758f34d3fb0439c6a1ddb39d3.zip |
fix: ignore email notifications if user is not active. (#820)
Diffstat (limited to 'models/fixtures')
-rw-r--r-- | models/fixtures/user.yml | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/models/fixtures/user.yml b/models/fixtures/user.yml index aa1d80d6f0..e8f13b93bd 100644 --- a/models/fixtures/user.yml +++ b/models/fixtures/user.yml @@ -9,7 +9,7 @@ salt: salt is_admin: true avatar: avatar1 - avatar_email: user2@example.com + avatar_email: user1@example.com num_repos: 0 - @@ -69,6 +69,7 @@ avatar_email: user5@example.com num_repos: 1 allow_create_organization: false + is_active: true - id: 6 @@ -99,3 +100,35 @@ avatar_email: user7@example.com num_repos: 0 num_members: 1 + +- + id: 8 + lower_name: user8 + name: user8 + full_name: User Eight + email: user8@example.com + passwd: password + type: 0 # user + salt: salt + is_admin: false + avatar: avatar8 + avatar_email: user8@example.com + num_repos: 0 + num_members: 1 + is_active: true + +- + id: 9 + lower_name: user9 + name: user9 + full_name: User Nine + email: user9@example.com + passwd: password + type: 0 # user + salt: salt + is_admin: false + avatar: avatar9 + avatar_email: user9@example.com + num_repos: 0 + num_members: 1 + is_active: false |