-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1269 from massenergize/ask-for-copyright-info-on-…
…upload Ask for copyright info on upload
- Loading branch information
Showing
18 changed files
with
469 additions
and
147 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"dev": "4.12.6", | ||
"dev": "4.12.7", | ||
"prod": "4.12.0", | ||
"canary": "4.12.1" | ||
} |
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,13 +1,32 @@ | ||
const CONST = { | ||
|
||
} | ||
CONST['LIMIT'] = 140 | ||
CONST['BIG_LIMIT'] = 400 | ||
const CONST = {}; | ||
CONST["LIMIT"] = 140; | ||
CONST["BIG_LIMIT"] = 400; | ||
|
||
|
||
export const TESTIMONIAL = "Testimonial" | ||
export const ACTION = "Action" | ||
export const TESTIMONIAL = "Testimonial"; | ||
export const ACTION = "Action"; | ||
export const VENDOR = "Service Provider"; | ||
export const EVENT = "Event" | ||
export const EVENT = "Event"; | ||
|
||
export default CONST; | ||
|
||
export default CONST; | ||
export const COPYRIGHT_OPTIONS = { | ||
YES: { | ||
value: true, | ||
key: "YES", | ||
text: "Yes. I took the photo or made the image, or was given permission by the person who made the image", | ||
notes: | ||
"Took the photo or made the image, or was given permission by the person who made the image", | ||
}, | ||
YES_CHECKED: { | ||
value: true, | ||
key: "YES_CHECKED", | ||
text: "Yes. I have checked that the image is nto copyright protected.", | ||
notes: "Checked that the image is not copyright protected", | ||
}, | ||
NO: { | ||
value: false, | ||
key: "NO", | ||
text: "No. The image may be protected by copyright, and I don't have permission.", | ||
notes: "Image may be protected by copyright, and I don't have permission", | ||
}, | ||
}; |
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
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
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
Oops, something went wrong.