243a41db88
The modifier got deprecated and wasn't actually needed in any of the used cases.
13 lines
262 B
JavaScript
13 lines
262 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;
|
|
})
|
|
|
|
});
|