mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Add a way to know which folder was listed for encrypted status
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
This commit is contained in:
parent
65b90f4bb1
commit
cfb66ddadd
2 changed files with 7 additions and 0 deletions
|
@ -29,6 +29,11 @@ GetFolderEncryptStatusJob::GetFolderEncryptStatusJob(const AccountPtr& account,
|
|||
{
|
||||
}
|
||||
|
||||
QString GetFolderEncryptStatusJob::folder() const
|
||||
{
|
||||
return _folder;
|
||||
}
|
||||
|
||||
void GetFolderEncryptStatusJob::start()
|
||||
{
|
||||
QNetworkRequest req;
|
||||
|
|
|
@ -286,6 +286,8 @@ class OWNCLOUDSYNC_EXPORT GetFolderEncryptStatusJob : public AbstractNetworkJob
|
|||
public:
|
||||
explicit GetFolderEncryptStatusJob (const AccountPtr &account, const QString& folder, QObject *parent = nullptr);
|
||||
|
||||
QString folder() const;
|
||||
|
||||
public slots:
|
||||
void start() override;
|
||||
|
||||
|
|
Loading…
Reference in a new issue