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

[NEW] Add tags to uploaded images using Google Cloud Vision API #6301

Merged
merged 22 commits into from
Aug 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
da8a9ba
Adds google vision settings and callback
marceloschmidt Mar 8, 2017
dd7f82b
add labels to images
karlprieb Mar 8, 2017
e0bfc75
Add detection options and block adult images
marceloschmidt Mar 9, 2017
2115dfa
Merge branch 'develop' into google-vision
marceloschmidt Mar 10, 2017
ec015fd
Add block adult images and monthly usage limit
marceloschmidt Mar 10, 2017
6c0db8b
Merge branch 'develop' into google-vision
marceloschmidt Mar 13, 2017
1c903b2
Merge branch 'develop' into google-vision
marceloschmidt Mar 20, 2017
3c3be3b
Save attributes in attachments
marceloschmidt Mar 20, 2017
bbf59ae
Fix safesearch and single type requests
marceloschmidt Mar 21, 2017
8836fdf
Fix Codacy Issues
marceloschmidt Mar 21, 2017
e89a927
Merge branch 'develop' into google-vision
engelgabriel Apr 27, 2017
a3b3c1d
Merge branch 'develop' into google-vision
marceloschmidt May 5, 2017
71448fe
Fix eslint errors
marceloschmidt May 11, 2017
d9a758f
Merge branch 'develop' into google-vision
marceloschmidt Jul 21, 2017
3d8d1a4
Fix file store name
sampaiodiego Jul 22, 2017
8e1d52a
Version and shrinkwrap update
marceloschmidt Jul 25, 2017
ccfbbcf
Merge branch 'develop' into google-vision
marceloschmidt Jul 25, 2017
87496ad
Update versions and fix with changes from file upload
marceloschmidt Jul 25, 2017
f56ebef
Merge branch 'develop' into google-vision
marceloschmidt Jul 25, 2017
de10910
Delete file if it is nsfw and blocked
marceloschmidt Jul 25, 2017
51c653e
Merge remote-tracking branch 'origin/develop' into google-vision
rodrigok Aug 21, 2017
60f932a
Remove uncessay dependecy
rodrigok Aug 21, 2017
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
1 change: 1 addition & 0 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ rocketchat:file
rocketchat:file-upload
rocketchat:github-enterprise
rocketchat:gitlab
rocketchat:google-vision
rocketchat:highlight-words
rocketchat:iframe-login
rocketchat:importer
Expand Down
1 change: 1 addition & 0 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ rocketchat:file@0.0.1
rocketchat:file-upload@0.0.1
rocketchat:github-enterprise@0.0.1
rocketchat:gitlab@0.0.1
rocketchat:google-vision@0.0.1
rocketchat:highlight-words@0.0.1
rocketchat:i18n@0.0.1
rocketchat:iframe-login@1.0.0
Expand Down
1 change: 1 addition & 0 deletions packages/rocketchat-google-vision/.npm/package/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
7 changes: 7 additions & 0 deletions packages/rocketchat-google-vision/.npm/package/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This directory and the files immediately inside it are automatically generated
when you change this package's NPM dependencies. Commit the files in this
directory (npm-shrinkwrap.json, .gitignore, and this README) to source control
so that others run the same versions of sub-dependencies.

You should NOT check in the node_modules directory that Meteor automatically
creates; if you are using git, the .gitignore file tells git to ignore it.
Loading