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

develop-merge #2 #5

Open
wants to merge 47 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
9802a4a
refactor(controller) update Channel and App controllers
jhoudan Jun 19, 2017
1a92144
refactor(controller) minor updates on Connector
jhoudan Jun 20, 2017
cc79e1c
refactor(core) minor updates on Conversations
jhoudan Jun 20, 2017
fc60ed2
refactor(controllers) upate Messages controller
jhoudan Jun 26, 2017
9a681e9
refactor(controller) update Webhook controller
jhoudan Jun 26, 2017
2dc9888
refactor(models) update Channel and Connector models
jhoudan Jun 26, 2017
32c6534
refactor(utils) update utils
jhoudan Jun 26, 2017
894b631
feat(utils) add microsoft utils
jhoudan Jun 26, 2017
4fa31a0
refactor(services) minor updates
jhoudan Jun 26, 2017
461d836
refactor(services) minor updates
jhoudan Jun 26, 2017
7630216
feat(service) add CiscoSpark service
jhoudan Jun 26, 2017
e47a885
feat(service) add Microsoft
jhoudan Jun 26, 2017
11e99af
feat(service) add Twitter service
jhoudan Jun 26, 2017
c32d02f
refactor(utils) update utils
jhoudan Jun 26, 2017
6c92270
refactor(routes) update routes handler
jhoudan Jun 26, 2017
305e212
chore(deps) update dependencies
jhoudan Jun 26, 2017
e89b926
chore(doc) update README
jhoudan Jun 26, 2017
bc13020
refactor(core) minor improvments
jhoudan Jun 28, 2017
62b87cb
refactor(core) minor updates
jhoudan Jun 28, 2017
da1307c
Merge branch 'master' into develop
jhoudan Jun 28, 2017
aecd7d6
Merge pull request #20 from RecastAI/develop
jhoudan Jun 28, 2017
91cc479
Update README.md
jhoudan Jun 28, 2017
619bf0b
Update README.md
jhoudan Jun 28, 2017
3718582
fix(license): add license file
Nov 23, 2017
8641a01
fix isTyping not working ...
fadomire Dec 1, 2017
418e9ec
Merge pull request #27 from fadomire/patch-1
dbousque Dec 1, 2017
0b39a72
Update CONTRIBUTING.md
JibranKalia Dec 14, 2017
34522c3
Merge pull request #28 from JibranKalia/patch-1
dbousque Dec 14, 2017
b353047
Update README.md
TokenBrice Dec 20, 2017
3a5bf22
Update README.md
TokenBrice Dec 20, 2017
3205919
Update README.md
TokenBrice Dec 20, 2017
3afe76c
Update README.md
Jun 1, 2018
38eea4c
Merge pull request #1 from julien-leclercq/julien-leclercq-patch-1
julien-leclercq Jun 1, 2018
86b4210
Update README.md
Betree Jun 5, 2018
114db7a
Merge pull request #34 from Betree/patch-1
janteuni Jun 5, 2018
0f89bbd
Merge pull request #33 from julien-leclercq/master
janteuni Jun 5, 2018
0c117b1
salesforce thumbs up
datapharmer Sep 11, 2018
3263cd6
Merge pull request #35 from datapharmer/master
dbousque Sep 11, 2018
a5a0a88
major update with several additions, changes and restructuring
Jan 17, 2019
3c53b97
update README and add example/
Mar 8, 2019
bfa2146
feat(*): add markdown support for some message types
May 10, 2019
66ba37f
Project Sunset Notice
Harinder-Singh-Batra Aug 5, 2019
7e75a77
Updated Readme Header
Harinder-Singh-Batra Aug 6, 2019
cb8623d
Merge pull request #44 from Harinder-Singh-Batra/master
jhoudan Aug 6, 2019
41ab6b6
Readme updates for archiving repository
imailer Nov 19, 2019
ad4126a
[Fix] Spelling mistakes
imailer Nov 20, 2019
2e23660
Merge pull request #47 from imailer2015/patch-2
jhoudan Nov 26, 2019
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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ node_modules
npm-debug.log
dist
coverage
doc
docs
config/*
-config/index.js
-config/test.js
48 changes: 0 additions & 48 deletions CONTRIBUTING.md

This file was deleted.

19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM node:carbon

# Create app directory
WORKDIR /usr/src/app

# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./

RUN npm install
# If you are building your code for production
# RUN npm install --only=production

# Bundle app source
COPY . .
RUN npm run build
EXPOSE 3004
CMD [ "node", "dist/index.js" ]
7 changes: 0 additions & 7 deletions ISSUE.md

This file was deleted.

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 SAP

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading