Skip to content

Commit

Permalink
add: 3 missing licenses to constants.py
Browse files Browse the repository at this point in the history
- CC_BY_NC_40, CC_BY_ND_40 and CC_BY_NC_SA_40 was missing
-- ToDo: we might have to update the "VALID_LICENSE_URLS"-list and the "LICENSE_MAPPINGS"-dict (need confirmation beforehand)
  • Loading branch information
Criamos committed Jul 4, 2022
1 parent f310da0 commit c1a3c93
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions converter/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ class Constants:
LICENSE_CC_BY_SA_40 = "https://creativecommons.org/licenses/by-sa/4.0/"
LICENSE_CC_BY_30 = "https://creativecommons.org/licenses/by/3.0/"
LICENSE_CC_BY_40 = "https://creativecommons.org/licenses/by/4.0/"
LICENSE_CC_BY_NC_40 = "https://creativecommons.org/licenses/by-nc/4.0/"
LICENSE_CC_BY_ND_40 = "https://creativecommons.org/licenses/by-nd/4.0/"
LICENSE_CC_BY_NC_SA_30 = "https://creativecommons.org/licenses/by-nc-sa/3.0/"
LICENSE_CC_BY_NC_SA_40 = "https://creativecommons.org/licenses/by-nc-sa/4.0/"
LICENSE_CC_BY_NC_ND_30 = "https://creativecommons.org/licenses/by-nc-nd/3.0/"
LICENSE_CC_BY_NC_ND_40 = "https://creativecommons.org/licenses/by-nc-nd/4.0/"
LICENSE_PDM = "https://creativecommons.org/publicdomain/mark/1.0/"
Expand Down

0 comments on commit c1a3c93

Please sign in to comment.