Skip to content

Commit

Permalink
Release beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hartorn authored Sep 26, 2017
2 parents 6e99fcf + 083e2ca commit d554dc3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "focus-file",
"version": "0.7.4-beta1",
"version": "0.7.4-beta2",
"description": "Focus file add on.",
"main": "index.js",
"files": [
Expand Down
20 changes: 12 additions & 8 deletions src/store/file.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
//Dependencies.
import { CoreStore } from 'focus-core/store';
const definition = {
files: 'files'
};

/**
* Store dealing with files.
* @type {focus}
* Class standing for the account relative data store.
*/
const FileStore = new CoreStore({
files: 'files'
});

FileStore.name = 'FileStore';

class FileStore extends CoreStore {
constructor(conf) {
conf = conf || {};
conf.definition = conf.definition || definition;
super(conf);
}
}

export default FileStore;

0 comments on commit d554dc3

Please sign in to comment.