Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Changed

- Rewire the legacy routes to extension-free urls so they are reachable at their own declared urls - [#203](https://github.com/owncloud/firstrunwizard/pull/203)

## [1.4.1] - 2026-07-22

Expand Down
6 changes: 3 additions & 3 deletions appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

/** @var $this OC\Route\Router */

$this->create('firstrunwizard_enable', 'ajax/enable.php')
$this->create('firstrunwizard_enable', 'ajax/enable')
->actionInclude('firstrunwizard/ajax/enable.php');
$this->create('firstrunwizard_disable', 'ajax/disable.php')
$this->create('firstrunwizard_disable', 'ajax/disable')
->actionInclude('firstrunwizard/ajax/disable.php');
$this->create('firstrunwizard_wizard', 'wizard.php')
$this->create('firstrunwizard_wizard', 'wizard')
->actionInclude('firstrunwizard/wizard.php');
4 changes: 2 additions & 2 deletions js/firstrunwizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ function showfirstrunwizard(){
speed:100,
width:"70%",
height:"70%",
href: OC.filePath('firstrunwizard', '', 'wizard.php'),
href: OC.generateUrl('/apps/firstrunwizard/wizard'),
onClosed : function(){
$.ajax({
url: OC.filePath('firstrunwizard', 'ajax', 'disable.php'),
url: OC.generateUrl('/apps/firstrunwizard/ajax/disable'),
data: ""
});
}
Expand Down