Skip to content

Releases: slakbal/gotowebinar

Enhanced behaviour on when a resource already exist

26 Mar 16:09
Compare
Choose a tag to compare
  • Some Basic clean-up of unused code.

  • When a resource already exists and a duplicate error is thrown by the API it also returns the resource. Instead of throwing an error, the package also returns the resource back. This is then behaving like a findOrCreate.

elseif ($response->code == 409) { //If the user is already registered, return the body
            return $response->body;
        }
  • Added more logging info for better transparency if the call actually went out to the Goto API.

Upgraded to new dependency

02 Feb 15:41
Compare
Choose a tag to compare
v6.0.1

Updated dependencies

Upgraded to Laravel 6 support

02 Feb 14:03
Compare
Choose a tag to compare
v6.0.0

Update Dependency versions

v2.0.1

24 Oct 18:47
Compare
Choose a tag to compare

A subject suffix can be configured to help distinguish between where the event came from in the case where there are several environments making use of a single goto account. For example test*,

v2.0

16 Oct 14:18
21a7cdf
Compare
Choose a tag to compare

This new major release has no backward compatibility with v1.* release. See the documentation for the usage of the new API.

Updated test routes with compatible timezone codes

24 Apr 06:55
Compare
Choose a tag to compare

Updated test routes with compatible timezone codes

Solved timezone-codes incompatibility issue

24 Apr 06:52
Compare
Choose a tag to compare

Laravel timezones (php standard) are not compatible with GotoWebinar timezone-codes. See GotoWebinar Timezone Codes for list of codes. User should rather pass the code in the request body. It is an optional field. If this parameter is not passed, the timezone of the organizer's profile on GotoWebinar will be used.

Locale issue resolved

23 Apr 16:39
Compare
Choose a tag to compare

The locale was not passed correctly to the API thus all emails were sent in English instead of the passed locale language.

Add getSessionQuestions

18 Dec 08:06
6b1e1d2
Compare
Choose a tag to compare

getSessionQuestions was added

Code optimisations

22 Sep 10:28
Compare
Choose a tag to compare

Code was restructured a bit and path building was optimised a bit