21 lines
821 B
C
21 lines
821 B
C
#ifndef APIROUTES_H
|
|
#define APIROUTES_H
|
|
|
|
#include <QString>
|
|
|
|
// TODO add namespace
|
|
|
|
static const QString apiPrefix = "/api/";
|
|
|
|
static const QString ROUTE_ITEMS = apiPrefix + "items";
|
|
|
|
static const QString ROUTE_BIDDINGROUNDS = apiPrefix + "bidding_rounds";
|
|
static const QString ROUTE_CURRENT_BIDDINGROUND = ROUTE_BIDDINGROUNDS + "/get_current";
|
|
static const QString ROUTE_START_BIDDINGROUND = ROUTE_BIDDINGROUNDS + "/start_new";
|
|
static const QString ROUTE_RESTART_BIDDINGROUND = ROUTE_BIDDINGROUNDS + "/restart";
|
|
static const QString ROUTE_STOP_BIDDINGROUND = ROUTE_BIDDINGROUNDS + "/stop";
|
|
|
|
static const QString ROUTE_GET_BIDDINGS_OF_SPECIFIC_ROUND = apiPrefix + "biddings_of_round";
|
|
static const QString ROUTE_GET_BIDDINGS_OF_HIGHEST_ROUND = apiPrefix + "biddings_of_highest_round";
|
|
#endif // APIROUTES_H
|