-
-
Notifications
You must be signed in to change notification settings - Fork 135
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 #149 from ahmetertem/master
few improvement
- Loading branch information
Showing
9 changed files
with
81 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace MacsiDigital\Zoom; | ||
|
||
use MacsiDigital\API\Support\Resource; | ||
|
||
class QuestionAnswer extends Resource | ||
{ | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace MacsiDigital\Zoom\Requests; | ||
|
||
use MacsiDigital\API\Support\PersistResource; | ||
|
||
class StoreEmailNotification extends PersistResource | ||
{ | ||
protected $persistAttributes = [ | ||
"enable" => "nullable|boolean", | ||
"type" => "nullable|integer|in:0,1,2,3,4,5,6,7" | ||
]; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
namespace MacsiDigital\Zoom\Requests; | ||
|
||
use MacsiDigital\API\Support\PersistResource; | ||
|
||
class StoreQuestionAnswer extends PersistResource | ||
{ | ||
protected $persistAttributes = [ | ||
"enable" => "nullable|boolean", | ||
"allow_submit_questions" => "nullable|boolean", | ||
"allow_anonymous_questions" => "nullable|boolean", | ||
"answer_questions" => "nullable|string|in:only,all", | ||
"attendees_can_comment" => "nullable|boolean", | ||
"attendees_can_upvote" => "nullable|boolean", | ||
"allow_auto_reply" => "nullable|string", | ||
"auto_reply_text" => "nullable|boolean", | ||
]; | ||
} |
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