225 Commits

Author SHA1 Message Date
Zachary Chai
2d0ca5f16b update login logout text 2017-01-20 16:46:51 -05:00
Fred Dixon
afce542431 Merge pull request #86 from zach-chai/login_updates
Login updates
2017-01-20 15:10:49 -05:00
Zachary Chai
ca79ba6317 style login description 2017-01-20 14:46:52 -05:00
Zachary Chai
9057948750 oauth signin buttons per provider spec 2017-01-20 14:34:30 -05:00
Zachary Chai
3039bd168b create separate page for login 2017-01-19 19:33:06 -05:00
Zachary Chai
ceeafa3208 move signup area 2017-01-19 17:54:52 -05:00
Zachary Chai
e5932d805b Merge pull request #85 from zach-chai/add_postgres_gem
postgres support
2017-01-19 15:13:56 -05:00
Zachary Chai
3a3b054786 postgres support 2017-01-19 15:09:34 -05:00
Zachary Chai
dcc20f875c Merge pull request #84 from zach-chai/fix_build_script
fix dockerfile refernce in build image script
2017-01-17 19:37:16 -05:00
Zachary Chai
489e09c93a fix dockerfile refernce in build image script 2017-01-17 19:35:01 -05:00
Zachary Chai
1cc0010ceb Merge pull request #82 from zach-chai/update_docker_dev
create dockerfile for dev and update compose
2017-01-17 13:48:41 -05:00
Zachary Chai
cef36d112c create dockerfile for dev and update compose 2017-01-17 11:29:10 -05:00
Fred Dixon
bc6eb444ce Merge pull request #81 from daronco/issue-78
Don't ask for a name in the landing page, redir to the room/meeting
2017-01-11 12:24:52 -05:00
Leonardo Crauss Daronco
b6cb7add17 Reuse variable in landing.js 2017-01-11 15:02:09 -02:00
Leonardo Crauss Daronco
b8c4ffe80b Don't ask for a name in the landing page, redir to the room/meeting
Instead of asking the user for a name in the landing page, it just
redirects to the room/meeting page, where the user is asked to enter a
name. If the user is signed in, no redirect is necessary and the user's
name is used automatically.
2017-01-11 14:55:39 -02:00
Fred Dixon
b82f693bff Merge pull request #80 from daronco/fix-missing-smtp_from
Fix missing 'smtp_from' variable when notifications are turned off
2017-01-06 15:08:09 -05:00
Fred Dixon
d030605748 Merge pull request #79 from ffdixon/config-updates
Updates to Docerfile and env for documentation
2017-01-06 14:47:27 -05:00
Fred Dixon
d49e2e539e Updates to Docerfile and env for documentation 2017-01-06 13:46:08 -06:00
Leonardo Crauss Daronco
78abef12af Fix missing 'smtp_from' variable when notifications are turned off
Application would break in production because Rails.config.smtp_from
was not set if GREENLIGHT_MAIL_NOTIFICATIONS was false.
2017-01-06 17:45:29 -02:00
Fred Dixon
e988f5e5dd Update en-us.yml
Make the text more consistent by using the term meeting instead of session
2017-01-06 13:02:07 -05:00
Fred Dixon
76acc9d331 Merge pull request #75 from erickadbay/dev-erick
Fix for when User with encrypted_id is not found
2016-12-19 16:54:30 -04:00
Erick Kad-Bay
a9ff1c7d9a Fix for when User with encrypted_id is not found 2016-12-19 15:44:58 -05:00
Fred Dixon
520aacf302 Merge pull request #74 from daronco/summit-9
Several improvements made during the Summit IX
2016-12-11 11:35:36 -05:00
Leonardo Crauss Daronco
219ea625e0 Use a different banner image for personal rooms 2016-12-09 15:43:38 -02:00
Leonardo Crauss Daronco
87bccb1204 Require browser notification permissions only when the user signs in
The only notification right now is for signed in users that are viewing
their room's page, so request permission only in this case.
2016-12-09 15:18:41 -02:00
Leonardo Crauss Daronco
bf7d087f45 Show a browser notification when a user is waiting to join a room
The owner of a room receives a browser notification if he has the page open
and another person tries to join his room.
2016-12-09 13:52:53 -02:00
Leonardo Crauss Daronco
6726504ec3 Add timeago js library to show in the start_time of recordings 2016-12-09 11:50:09 -02:00
Leonardo Crauss Daronco
04ae45e4f4 Use 'unpublished' instead of 'inaccessible' 2016-12-09 10:26:28 -02:00
Leonardo Crauss Daronco
f763d8394e Add flag to enable/disable mail notifications 2016-12-08 18:55:41 -02:00
Leonardo Crauss Daronco
e94f3d7a10 Send an email to the user when a recording is done processing
Had to add an email attribute to users to store their email to send the
notification. Will only send it for user rooms since they are the only
ones we know who to notify.
2016-12-08 18:33:19 -02:00
Leonardo Crauss Daronco
09c30bb5bd Add flag to use webhooks and API call to register a hook
It almost works with webhooks now. Still TODO is:
* Remove the hook after the recording is published
* To process the publish_ended event from the webhooks either the webhook
  needs to include the metadata (currently it doesn't) or GreenLight has
  find out the meeting token without reading it from the metadata.
2016-12-08 14:01:57 -02:00
Leonardo Crauss Daronco
906b21ab0e Fix clicking buttons inside popovers
They would work only occasionally because of the way bootstrap handles
popovers with trigger:focus.
Had to change to trigger:click and manually close the popovers when
clicking outside of them or in buttons marked to close popovers.
2016-12-07 18:38:53 -02:00
Leonardo Crauss Daronco
03e9646502 Add an example of a post publish script to send data to greenlight 2016-12-07 16:32:59 -02:00
Leonardo Crauss Daronco
e5efb05a01 Add endpoint to detect new recordings and update the interface
The endpoint receives events from BigBlueButton via webhooks or scripts
in the record and playback workflow.
For now it only treats the event for when a recording is ready.
When it happens, it uses action cable to update the interface dynamically
with the new recording.
2016-12-07 16:20:10 -02:00
Leonardo Crauss Daronco
b518458622 Allow recordings to be 'unlisted'
Unlisted is a state between published and unpublished. They are still
published in the server, but will not appear to anyone other than the
user that created the recording.
It is done using a metadata attribute and required several changes in how
the application handles publishing and unpublishing.
2016-12-06 12:03:53 -02:00
Leonardo Crauss Daronco
40cbc8a575 Move the refresh button to be inside the meeting URL input
Less buttons, better interface.
2016-12-05 16:51:13 -02:00
Leonardo Crauss Daronco
45e173d132 Add a button with a "mailto:" link to send invitations 2016-12-05 16:32:03 -02:00
Zachary Chai
71831639f9 update readme and add new env file 2016-12-02 18:02:33 -05:00
Zachary Chai
de85c5d1c6 Merge pull request #69 from zach-chai/downscale_background_image
downscale background image
2016-12-02 17:02:37 -05:00
Zachary Chai
f6e895271e downscale background image 2016-12-02 16:58:30 -05:00
Zachary Chai
692e864434 Merge pull request #68 from zach-chai/transfer_bigbluebutton
point docker image to bigbluebutton repo
2016-12-02 16:23:19 -05:00
Zachary Chai
a6aed404f0 point docker image to bigbluebutton repo 2016-12-02 16:20:48 -05:00
Zachary Chai
75fcc5af97 Merge pull request #67 from zach-chai/background
Background
2016-12-02 15:35:16 -05:00
Zachary Chai
d8eff2087a add bbb logo 2016-12-02 15:28:01 -05:00
Zachary Chai
906d184f46 add background image 2016-12-02 15:25:47 -05:00
Zachary Chai
773e9689dc Merge pull request #66 from zach-chai/duration
add units to duration header
2016-12-02 15:01:37 -05:00
Zachary Chai
2194c45fe7 add units to duration header 2016-12-02 14:56:13 -05:00
Zachary Chai
76316b96ec add build numbers 2016-12-02 12:36:11 -05:00
Zachary Chai
98a8cdbd2a use new latest id from page in setup 2016-12-01 18:18:13 -05:00
Zachary Chai
f63ea9c4b8 Merge pull request #63 from zach-chai/join_meeting_name
use the user's name for the bbb meeting name
2016-12-01 17:04:21 -05:00