/**
  * \brief Gets the url for authenticating with the server.
  *
  * @return The url for authenticating with the server.
  */
 static const QUrl& getAuthUrl(){
   static const QUrl AUTH_URL(getServerUrlPath() + "auth");
   return AUTH_URL;
 }
Esempio n. 2
0
 /**
  * \brief Gets the url for creating an event on the server.
  *
  * @return The url for creating an event on the server.
  */
 static const QUrl& getCreateEventUrl(){
   static const QUrl CREAT_EVENT_URL(getServerUrlPath() + "events/event");
   return CREAT_EVENT_URL;
 }