()
| 168 | |
| 169 | const Avatar = Service.extend({ |
| 170 | get() { |
| 171 | const avatar = sample(AVATARS); |
| 172 | const prefix = sample(PREFIXES); |
| 173 | |
| 174 | return { |
| 175 | url: `/assets/images/avatars/${avatar.id}.svg`, |
| 176 | label: startCase(`${prefix} ${avatar.name}`), |
| 177 | }; |
| 178 | }, |
| 179 | }); |
| 180 | |
| 181 | export default Avatar; |
nothing calls this directly
no outgoing calls
no test coverage detected