Skip to content

Badges und Likes im Profil

Robert Palm requested to merge rapl42/tc-server:profile-badges into auth

Hinweis: Das Feld unlockDate ist null, solange eine Badge noch nicht freigeschaltet wurde. Das Badge-Showcase findet vorerst nur lokal in der App statt.

Beispiel-Output für GET /profile:

{
  "displayName": "Happy User",
  "score": 0,
  "level": 1,
  "nextLevelRequirement": 100,
  "totalHearts": 1,
  "hearts": {
    "Think Big": 0,
    "Fragen und Antworten": 1
  },
  "badges": [
    {
      "badgeId": 1,
      "title": "Neugierig",
      "description": "Stelle Deine erste Frage",
      "asset": "badge_qanda_answers.flr",
      "animationLevel": "level1",
      "unlockDate": null
    },

    ...

    {
      "badgeId": 12,
      "title": "Meister",
      "description": "Erreiche Stufe 10",
      "asset": "badge_example.flr",
      "animationLevel": "level3",
      "unlockDate": null
    }
  ]
}
Edited by Robert Palm

Merge request reports