mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 12:16:09 +03:00
c8e8da4780
closes #2759 closes #3027 - added oauth2orize library for server side oAuth handling - added ember-simple-auth library for admin oAuth handling - added tables for client, accesstoken and refreshtoken - implemented RFC6749 4.3 Ressouce Owner Password Credentials Grant - updated api tests with oAuth - removed session, authentication is now token based Known issues: - Restore spam prevention #3128 - Signin after Signup #3125 - Signin validation #3125 **Attention** - oldClient doesn't work with this PR anymore, session authentication was removed
31 lines
1.7 KiB
Handlebars
31 lines
1.7 KiB
Handlebars
<header id="global-header" class="navbar">
|
|
<a class="ghost-logo" {{bind-attr href=ghostPaths.blogRoot title=ghostPaths.blogRoot}} data-off-canvas="left">
|
|
<span class="hidden">Ghost</span>
|
|
</a>
|
|
<nav id="global-nav" role="navigation">
|
|
<ul id="main-menu" >
|
|
{{gh-activating-list-item route="posts" title="Content" classNames="content"}}
|
|
{{gh-activating-list-item route="editor.new" title="New Post" classNames="editor"}}
|
|
{{gh-activating-list-item route="settings" title="Settings" classNames="settings"}}
|
|
|
|
<li id="usermenu" class="usermenu subnav">
|
|
{{#gh-popover-button popoverName="user-menu" tagName="a" href="#" classNames="dropdown"}}
|
|
{{#if user.image}}
|
|
<img class="avatar" {{bind-attr src="user.image"}} alt="Avatar" />
|
|
{{else}}
|
|
<img class="avatar" src="/shared/img/user-image.png" alt="Avatar" />
|
|
{{/if}}
|
|
<span class="name">{{user.name}}</span>
|
|
{{/gh-popover-button}}
|
|
{{#gh-popover tagName="ul" classNames="overlay" name="user-menu" closeOnClick="true"}}
|
|
<li class="usermenu-profile">{{#link-to "settings.user"}}Your Profile{{/link-to}}</li>
|
|
<li class="divider"></li>
|
|
<li class="usermenu-help"><a href="http://support.ghost.org/">Help / Support</a></li>
|
|
<li class="divider"></li>
|
|
<li class="usermenu-signout"><a {{ action 'invalidateSession' }}>Sign Out</a></li>
|
|
{{/gh-popover}}
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|