mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 07:35:55 +01:00
2017-03-27 Fred Gleason <fredg@paravelsystems.com>
* Added a 'WEBAPI_AUTHS' table to the database. * Added a 'USERS.WEBAPI_AUTH_TIMEOUT' field to the database. * Incremented the database version to 260. * Added 'RDUser::webapiAuthTimeout()' and 'RDUser::setWebapiAuthTimeout()' methods in 'lib/rduser.cpp' and 'lib/rduser.h'. * Added a 'WebAPI Timeout' control to the Edit User dialog in 'rdadmin/edit_user.cpp' and 'rdadmin/edit_user.h'. * Implemented a 'CreateTicket' Web API call.
This commit is contained in:
@@ -38,6 +38,7 @@ class RDFormPost
|
||||
bool auto_delete=true);
|
||||
~RDFormPost();
|
||||
RDFormPost::Error error() const;
|
||||
QHostAddress clientAddress() const;
|
||||
QStringList names() const;
|
||||
QVariant value(const QString &name,bool *ok=NULL);
|
||||
bool getValue(const QString &name,QHostAddress *addr,bool *ok=NULL);
|
||||
@@ -58,6 +59,7 @@ class RDFormPost
|
||||
private:
|
||||
void LoadUrlEncoding(char first);
|
||||
void LoadMultipartEncoding(char first);
|
||||
QHostAddress post_client_address;
|
||||
RDFormPost::Encoding post_encoding;
|
||||
RDFormPost::Error post_error;
|
||||
std::map<QString,QVariant> post_values;
|
||||
|
||||
Reference in New Issue
Block a user