File indexing completed on 2024-04-28 05:34:17

0001 // SPDX-FileCopyrightText: 2018 Daniel Vrátil <dvratil@kde.org>
0002 //
0003 // SPDX-License-Identifier: LGPL-2.1-or-later
0004 
0005 #include "passwordprovider.h"
0006 
0007 using namespace PlasmaPass;
0008 
0009 ProviderBase::HandlingResult PasswordProvider::handleSecret(QStringView secret)
0010 {
0011     setSecret(secret.toString());
0012     // We are only interested in the first line for passwords
0013     return HandlingResult::Stop;
0014 }
0015 
0016 #include "moc_passwordprovider.cpp"