forked from ory/oathkeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add consent banner for cookies and google analytics (ory#53)
This patch adds a GDPR compliant consent banner for cookies and Google Analytics: <img width="1904" alt="Bildschirmfoto 2020-11-06 um 11 37 19" src="https://user-images.githubusercontent.com/3372410/98357364-611b7400-2025-11eb-8a54-e23c8fc82f16.png"> When the user removes "Statistics", Google Analytics **will not be enabled**. Google Analytics is also **not enabled by default** which will imply a significant drop in reported users there. Closes ory#51
- Loading branch information
Showing
51 changed files
with
947 additions
and
471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
declare const styles: { | ||
readonly "adopters": string; | ||
readonly "list": string; | ||
readonly "logos": string; | ||
readonly "logosInner": string; | ||
}; | ||
export = styles; | ||
|
||
readonly adopters: string | ||
readonly list: string | ||
readonly logos: string | ||
readonly logosInner: string | ||
} | ||
export = styles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
declare const styles: { | ||
readonly "announcement": string; | ||
}; | ||
export = styles; | ||
|
||
readonly announcement: string | ||
} | ||
export = styles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
declare const styles: { | ||
readonly "title": string; | ||
readonly "meta": string; | ||
readonly "author": string; | ||
readonly "subtitle": string; | ||
readonly "teaser": string; | ||
}; | ||
export = styles; | ||
|
||
readonly title: string | ||
readonly meta: string | ||
readonly author: string | ||
readonly subtitle: string | ||
readonly teaser: string | ||
} | ||
export = styles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
declare const styles: { | ||
readonly "section": string; | ||
}; | ||
export = styles; | ||
|
||
readonly section: string | ||
} | ||
export = styles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
declare const styles: { | ||
readonly "blogSummary": string; | ||
readonly "blogRow": string; | ||
readonly "blogBox": string; | ||
}; | ||
export = styles; | ||
|
||
readonly blogSummary: string | ||
readonly blogRow: string | ||
readonly blogBox: string | ||
} | ||
export = styles |
Oops, something went wrong.