async getUserByUuid(uuid: string): Promise<User> {
    return await this.http
      .get<User>(this.baseUrl + "/authentication/user/" + uuid)
      .toPromise();
  }