File indexing completed on 2025-02-16 04:50:12
0001 // SPDX-FileCopyrightText: 2011 Daniel Vrátil <dvratil@redhat.com> 0002 // SPDX-FileCopyrightText: 2023 Carl Schwan <carl@carlschwan.eu> 0003 // SPDX-License-Identifier: GPL-3.0-or-later 0004 0005 #include "googlescopes.h" 0006 #include <KGAPI/Account> 0007 0008 using namespace KGAPI2; 0009 0010 QList<QUrl> googleScopes() 0011 { 0012 // TODO: determine it based on what user wants? 0013 return { 0014 Account::accountInfoScopeUrl(), 0015 Account::calendarScopeUrl(), 0016 Account::peopleScopeUrl(), 0017 Account::tasksScopeUrl(), 0018 }; 0019 }