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