13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
|
|
import Controller from '@ember/controller';
|
|
import { computed } from '@ember/object';
|
|
import config from 'kredits-web/config/environment';
|
|
|
|
export default Controller.extend({
|
|
|
|
ipfsGatewayUrl: computed(function() {
|
|
return config.ipfs.gatewayUrl;
|
|
}).volatile()
|
|
|
|
});
|