Skip to content

Commit

Permalink
Add Google Reader API implementation (experimental)
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Kempken <[email protected]>
Co-authored-by: Gergan Penkov <[email protected]>
Co-authored-by: Dave Marquard <[email protected]>
Co-authored-by: Moritz Fago <[email protected]>
  • Loading branch information
5 people authored Jan 3, 2022
1 parent 2935aae commit 4b6e46d
Show file tree
Hide file tree
Showing 29 changed files with 1,923 additions and 36 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ miniflux-*
miniflux
*.rpm
*.deb
.idea
9 changes: 9 additions & 0 deletions database/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -563,4 +563,13 @@ var migrations = []func(tx *sql.Tx) error{
_, err = tx.Exec(sql)
return err
},
func(tx *sql.Tx) (err error) {
sql := `
ALTER TABLE integrations ADD COLUMN googlereader_enabled bool default 'f';
ALTER TABLE integrations ADD COLUMN googlereader_username text default '';
ALTER TABLE integrations ADD COLUMN googlereader_password text default '';
`
_, err = tx.Exec(sql)
return err
},
}
10 changes: 10 additions & 0 deletions googlereader/doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.

/*
Package googlereader implements Google Reader API endpoints.
*/
package googlereader // import "miniflux.app/googlereader"
Loading

0 comments on commit 4b6e46d

Please sign in to comment.