mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
109 lines
2.6 KiB
C++
109 lines
2.6 KiB
C++
/*
|
|
Copyright (c) 2014 Montel Laurent <montel@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU Library General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to the
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA.
|
|
|
|
*/
|
|
|
|
#include "testsettingsjob.h"
|
|
|
|
using namespace PimCommon;
|
|
|
|
TestSettingsJob::TestSettingsJob(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
TestSettingsJob::~TestSettingsJob()
|
|
{
|
|
|
|
}
|
|
|
|
QString TestSettingsJob::youSendItApiKey() const
|
|
{
|
|
//TODO customize it
|
|
return QLatin1String("fnab8fkgwrka7v6zs2ycd34a");
|
|
}
|
|
|
|
QString TestSettingsJob::dropboxOauthConsumerKey() const
|
|
{
|
|
return QLatin1String("e40dvomckrm48ci");
|
|
}
|
|
|
|
QString TestSettingsJob::dropboxOauthSignature() const
|
|
{
|
|
return QLatin1String("0icikya464lny9g&");
|
|
}
|
|
|
|
QString TestSettingsJob::defaultUploadFolder() const
|
|
{
|
|
return QString();
|
|
}
|
|
|
|
QString TestSettingsJob::boxClientId() const
|
|
{
|
|
return QLatin1String("o4sn4e0dvz50pd3ps6ao3qxehvqv8dyo");
|
|
}
|
|
|
|
QString TestSettingsJob::boxClientSecret() const
|
|
{
|
|
return QLatin1String("wLdaOgrblYzi1Y6WN437wStvqighmSJt");
|
|
}
|
|
|
|
QString TestSettingsJob::hubicClientId() const
|
|
{
|
|
return QLatin1String("api_hubic_zBKQ6UDUj2vDT7ciDsgjmXA78OVDnzJi");
|
|
}
|
|
|
|
QString TestSettingsJob::hubicClientSecret() const
|
|
{
|
|
return QLatin1String("pkChgk2sRrrCEoVHmYYCglEI9E2Y2833Te5Vn8n2J6qPdxLU6K8NPUvzo1mEhyzf");
|
|
}
|
|
|
|
QString TestSettingsJob::dropboxRootPath() const
|
|
{
|
|
return QLatin1String("dropbox");
|
|
}
|
|
|
|
QString TestSettingsJob::oauth2RedirectUrl() const
|
|
{
|
|
return QLatin1String("https://bugs.kde.org/");
|
|
}
|
|
|
|
QString TestSettingsJob::ubuntuOneAttachmentVolume() const
|
|
{
|
|
return QLatin1String("/~/KMail Attachments");
|
|
}
|
|
|
|
QString TestSettingsJob::hubicScope() const
|
|
{
|
|
return QLatin1String("usage.r,account.r,credentials.r,links.wd");
|
|
}
|
|
|
|
QString TestSettingsJob::ubuntuOneTokenName() const
|
|
{
|
|
return QLatin1String("foo");
|
|
}
|
|
|
|
QString TestSettingsJob::gdriveClientId() const
|
|
{
|
|
return QLatin1String("76182239499-2krm3lvlrqrj446loaqrrep594n3u2o8.apps.googleusercontent.com");
|
|
}
|
|
|
|
QString TestSettingsJob::gdriveClientSecret() const
|
|
{
|
|
return QLatin1String("7SinUSCxfbrJYN7az3VvxTJ9");
|
|
}
|