Skip to content

Commit

Permalink
[auto-generated] Update plugin files
Browse files Browse the repository at this point in the history
Check out the commits that caused these changes: moodlehq/moodleapp@a1dc1ec...105f283
  • Loading branch information
github-actions[bot] committed Nov 16, 2022
1 parent a77b877 commit ca8591d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions tests/behat/behat_app.php
Original file line number Diff line number Diff line change
Expand Up @@ -1012,4 +1012,22 @@ public function close_notification_app(string $title) {
return true;
}

/**
* View a specific month in the calendar in the app.
*
* @When /^I open the calendar for "(?P<month>\d+)" "(?P<year>\d+)" in the app$/
* @param int $month the month selected as a number
* @param int $year the four digit year
*/
public function i_open_the_calendar_for($month, $year) {
$options = json_encode([
'params' => [
'month' => $month,
'year' => $year,
],
]);

$this->zone_js("navigator.navigateToSitePath('/calendar/index', $options)");
}

}
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2022111400;
$plugin->version = 2022111600;
$plugin->requires = 2016052300;
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '4.1.0-dev';
Expand Down

0 comments on commit ca8591d

Please sign in to comment.