parent
fa97a5a5a2
commit
87ef4446e1
4 changed files with 7 additions and 6 deletions
|
|
@ -3,6 +3,7 @@
|
|||
## Refactor
|
||||
* Internationalize controller rescue\_from text [#6554](https://github.com/diaspora/diaspora/pull/6554)
|
||||
* Make mention parsing a bit more robust [#6658](https://github.com/diaspora/diaspora/pull/6658)
|
||||
* Remove unlicensed images [#6673](https://github.com/diaspora/diaspora/pull/6673)
|
||||
|
||||
## Bug fixes
|
||||
* Fix plural rules handling more than wanted as "one" [#6630](https://github.com/diaspora/diaspora/pull/6630)
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 67 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB |
|
|
@ -44,9 +44,9 @@ var factory = {
|
|||
"id": id,
|
||||
"diaspora_id": "bob@bob.com",
|
||||
"avatar":{
|
||||
"large":"http://localhost:3000/assets/user/uma.jpg",
|
||||
"medium":"http://localhost:3000/assets/user/uma.jpg",
|
||||
"small":"http://localhost:3000/assets/user/uma.jpg"}
|
||||
"large":"http://localhost:3000/assets/user/default.png",
|
||||
"medium":"http://localhost:3000/assets/user/default.png",
|
||||
"small":"http://localhost:3000/assets/user/default.png"}
|
||||
};
|
||||
|
||||
return _.extend(defaultAttrs, overrides);
|
||||
|
|
@ -90,9 +90,9 @@ var factory = {
|
|||
"full_name": "bob grimm",
|
||||
"gender": "robot",
|
||||
"id": id,
|
||||
"image_url": "http:\/\/localhost:3000\/assets\/user\/wolf.jpg",
|
||||
"image_url_medium": "http:\/\/localhost:3000\/assets\/user\/wolf.jpg",
|
||||
"image_url_small": "http:\/\/localhost:3000\/assets\/user\/wolf.jpg",
|
||||
"image_url": "http://localhost:3000/assets/user/default.png",
|
||||
"image_url_medium": "http://localhost:3000/assets/user/default.png",
|
||||
"image_url_small": "http://localhost:3000/assets/user/default.png",
|
||||
"last_name": "Grimm",
|
||||
"location": "Earth",
|
||||
"nsfw": false,
|
||||
|
|
|
|||
Loading…
Reference in a new issue