1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 01:25:17 +01:00

acl for powered_by

This commit is contained in:
diminator 2015-09-29 16:48:46 +02:00
parent f64fb73aa6
commit 08c3bfe7fb

View File

@ -64,20 +64,22 @@ let Header = React.createClass({
}, },
getLogo(){ getLogo(){
let logo = ( if (this.state.whitelabel && this.state.whitelabel.logo){
return <img className="img-brand" src={this.state.whitelabel.logo} />;
}
return (
<span> <span>
<span>ascribe </span> <span>ascribe </span>
<span className="glyph-ascribe-spool-chunked ascribe-color"></span> <span className="glyph-ascribe-spool-chunked ascribe-color"></span>
</span>); </span>
if (this.state.whitelabel && this.state.whitelabel.logo){ );
logo = <img className="img-brand" src={this.state.whitelabel.logo} />;
}
return logo;
}, },
getPoweredBy(){ getPoweredBy(){
if (this.state.whitelabel && this.state.whitelabel.logo) {
return ( return (
<AclProxy
aclObject={this.state.whitelabel}
aclName="acl_view_powered_by">
<li> <li>
<a className="pull-right" href="https://www.ascribe.io/" target="_blank"> <a className="pull-right" href="https://www.ascribe.io/" target="_blank">
<span id="powered">{getLangText('powered by')} </span> <span id="powered">{getLangText('powered by')} </span>
@ -85,10 +87,10 @@ let Header = React.createClass({
<span className="glyph-ascribe-spool-chunked ascribe-color"></span> <span className="glyph-ascribe-spool-chunked ascribe-color"></span>
</a> </a>
</li> </li>
</AclProxy>
); );
}
return null;
}, },
onChange(state) { onChange(state) {
this.setState(state); this.setState(state);