1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-14 10:16:26 +00:00

Redesign SideNav & implement add repo func

This commit is contained in:
Rokt33r
2016-04-18 15:36:02 +09:00
parent 9c5cbd348b
commit ac7e08ae2c
11 changed files with 1062 additions and 211 deletions

View File

@@ -153,6 +153,17 @@ export function toggleTutorial () {
}
}
/**
* v0.6.* Actions
*/
export function addRepo (data) {
return {
type: 'ADD_REPOSITORY',
data
}
}
export default {
updateUser,
@@ -174,5 +185,8 @@ export default {
setSearchFilter,
setTagFilter,
clearSearch,
toggleTutorial
toggleTutorial,
// v0.6.*
addRepo
}