#ifndef APIROUTES_H #define APIROUTES_H #include // 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 = apiPrefix + "biddings_of_round"; static const QString ROUTE_GET_BIDDINGS_OF_HIGHEST_ROUND = apiPrefix + "biddings_of_highest_round"; #endif // APIROUTES_H