Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support CalDAV for birthdays and tasks #2304

Merged
merged 49 commits into from
Jan 23, 2019
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
80f4a36
Support CalDAV to export the collection of birthdays
asbiin Jan 14, 2019
79c9623
Apply fixes from StyleCI
asbiin Jan 14, 2019
230f18e
update
asbiin Jan 16, 2019
6bfa94a
Merge branch 'feat/caldav-2019-01-14' of github.com:monicahq/monica i…
asbiin Jan 16, 2019
66d18a1
Apply fixes from StyleCI
asbiin Jan 16, 2019
b6f5bd7
chore(assets): Update assets
MonicaBot Jan 16, 2019
4deb7b7
Update url of DAVs protocols
asbiin Jan 17, 2019
ef3d54e
Apply fixes from StyleCI
asbiin Jan 17, 2019
8712637
use special dates
asbiin Jan 18, 2019
36ba5d0
Apply fixes from StyleCI
asbiin Jan 19, 2019
fe1189e
Merge remote-tracking branch 'origin/master' into feat/caldav-2019-01-14
asbiin Jan 19, 2019
086ee33
some factorisation
asbiin Jan 19, 2019
c725a17
Apply fixes from StyleCI
asbiin Jan 19, 2019
5943401
add tasks calendar
asbiin Jan 19, 2019
6c199aa
Apply fixes from StyleCI
asbiin Jan 19, 2019
fa62f6c
update
asbiin Jan 19, 2019
0169b6f
Merge branch 'feat/caldav-2019-01-14' of github.com:monicahq/monica i…
asbiin Jan 19, 2019
f2f645d
Apply fixes from StyleCI
asbiin Jan 19, 2019
1f385c2
update
asbiin Jan 19, 2019
887cf76
Merge branch 'feat/caldav-2019-01-14' of github.com:monicahq/monica i…
asbiin Jan 19, 2019
b3770f6
Apply fixes from StyleCI
asbiin Jan 19, 2019
a2b8146
update synctoken usage
asbiin Jan 20, 2019
657a804
Apply fixes from StyleCI
asbiin Jan 20, 2019
6a3cad2
update
asbiin Jan 20, 2019
82465d3
Apply fixes from StyleCI
asbiin Jan 20, 2019
9c28e3e
fix psalm
asbiin Jan 20, 2019
f99b245
Apply fixes from StyleCI
asbiin Jan 20, 2019
100948f
Fix sonar
asbiin Jan 20, 2019
71a73c9
Apply fixes from StyleCI
asbiin Jan 20, 2019
596be97
fix styleci
asbiin Jan 20, 2019
faf5464
simplify some code
asbiin Jan 20, 2019
70a9423
Apply fixes from StyleCI
asbiin Jan 20, 2019
3473bbf
Add AbstractCalDAVBackend
asbiin Jan 20, 2019
00c7631
Apply fixes from StyleCI
asbiin Jan 20, 2019
bb12571
write a lot of tests
asbiin Jan 21, 2019
82d430d
Apply fixes from StyleCI
asbiin Jan 21, 2019
a2315b9
Fix getEtag
asbiin Jan 21, 2019
adeaaf1
Merge remote-tracking branch 'origin/master' into feat/caldav-2019-01-14
asbiin Jan 21, 2019
9a5fd8d
update open file limits
asbiin Jan 21, 2019
a3388f9
Merge remote-tracking branch 'origin/master' into feat/caldav-2019-01-14
asbiin Jan 22, 2019
7b354f8
Cache route
asbiin Jan 22, 2019
100d8cf
Really cache route
asbiin Jan 22, 2019
2223d61
Enable DAV on tests
asbiin Jan 22, 2019
032b538
with the right test it's better
asbiin Jan 22, 2019
8b2cbb0
remove route cache from dusk tests
asbiin Jan 22, 2019
eefa00a
Merge remote-tracking branch 'origin/master' into feat/caldav-2019-01-14
asbiin Jan 23, 2019
025b465
Move classes
asbiin Jan 23, 2019
8beb835
Apply fixes from StyleCI
asbiin Jan 23, 2019
71d2da7
fix SESSION_DRIVER
asbiin Jan 23, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply fixes from StyleCI
  • Loading branch information
asbiin authored and StyleCIBot committed Jan 23, 2019
commit 8beb83513e8ef1295b068ea35034fe0c69755cd2
10 changes: 5 additions & 5 deletions app/Http/Controllers/DAV/DAVController.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@
use Sabre\CalDAV\CalendarRoot;
use Sabre\CalDAV\ICSExportPlugin;
use Sabre\CardDAV\VCFExportPlugin;
use App\Http\Controllers\DAV\Backend\CardDAV\AddressBookRoot;
use Illuminate\Support\Facades\App;
use App\Http\Controllers\Controller;
use Sabre\DAV\Server as SabreServer;
use Sabre\DAVACL\Plugin as AclPlugin;
use Sabre\DAVACL\PrincipalCollection;
use App\Http\Controllers\DAV\Auth\AuthBackend;
use Sabre\CalDAV\Plugin as CalDAVPlugin;
use Sabre\DAV\Auth\Plugin as AuthPlugin;
use Sabre\DAV\Sync\Plugin as SyncPlugin;
use Barryvdh\Debugbar\Facade as Debugbar;
use App\Http\Controllers\DAV\Backend\CalDAV\CalDAVBackend;
use Sabre\CardDAV\Plugin as CardDAVPlugin;
use App\Http\Controllers\DAV\Backend\CardDAV\CardDAVBackend;
use App\Http\Controllers\DAV\DAVACL\PrincipalBackend;
use App\Http\Controllers\DAV\Auth\AuthBackend;
use Sabre\DAV\Browser\Plugin as BrowserPlugin;
use App\Http\Controllers\DAV\DAVACL\PrincipalBackend;
use App\Http\Controllers\DAV\Backend\CalDAV\CalDAVBackend;
use App\Http\Controllers\DAV\Backend\CardDAV\CardDAVBackend;
use App\Http\Controllers\DAV\Backend\CardDAV\AddressBookRoot;

class DAVController extends Controller
{
Expand Down