Skip to content

Commit

Permalink
v1.0.59-alpha
Browse files Browse the repository at this point in the history
- Added config parameter ($config['logout_redirect']) to specify the the redirection address when logging out;
- Fixed saving settings, which did not exist in the configuration file.

Fixed #37
Fixed #34
  • Loading branch information
alekseynemiro committed Jul 16, 2016
1 parent 5108428 commit 09e7570
Show file tree
Hide file tree
Showing 18 changed files with 2,197 additions and 970 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Change Log
# Change Log

All notable changes to SmallServerAdmin will be documented in this file.

## [1.0.59-alpha] - unreleased
### Added
- Added config parameter (`$config['logout_redirect']`) to specify the the redirection address when logging out ([#37](https://github.com/adminstock/ssa/issues/37));

### Fixed
- Saving settings, which did not exist in the configuration file ([#34](https://github.com/adminstock/ssa/issues/34)).

## [1.0.57-alpha] - 2016-07-03

The new version includes a small structural changes.
Expand Down
1 change: 1 addition & 0 deletions FrontEndScripts/FrontEndScripts.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<Content Include="libs\angular\i18n\angular-locale_ru.js" />
<Content Include="libs\bootstrap-switch.js" />
<Content Include="libs\bootstrap.js" />
<Content Include="libs\bowser.js" />
<Content Include="libs\codemirror\addon\comment\comment.js" />
<Content Include="libs\codemirror\addon\comment\continuecomment.js" />
<Content Include="libs\codemirror\addon\dialog\dialog.css" />
Expand Down
3 changes: 3 additions & 0 deletions FrontEndScripts/Models/ServerToAdmin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ module SmallServerAdmin.Models {
/** List of modules. */
public Modules: Array<Module>;

/** Address to which the user will be redirected after logout. */
public LogoutRedirect: string;

}

}
1 change: 1 addition & 0 deletions FrontEndScripts/bundleconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"libs/angular-pageslide-directive.js",
"libs/showdown.js",
"libs/angular-drag-and-drop-lists.js",
"libs/bowser.js",

// Helper classes by Aleksey Nemiro
"libs/Nemiro/EventHandlers.js",
Expand Down
3 changes: 2 additions & 1 deletion FrontEndScripts/compiled.js.bundle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
<file>/libs/angular-pageslide-directive.js</file>
<file>/libs/showdown.js</file>
<file>/libs/angular-drag-and-drop-lists.js</file>

<file>/libs/bowser.js</file>

<!--Helper classes by Aleksey Nemiro-->
<file>/libs/Nemiro/nemiro.js</file>

Expand Down
Loading

0 comments on commit 09e7570

Please sign in to comment.