removed flags for non adherent users
This commit is contained in:
parent
9bb8e74467
commit
1298db7da0
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
|
@ -17,7 +17,7 @@
|
||||||
class="mdi mdi-logout"
|
class="mdi mdi-logout"
|
||||||
title="logout"
|
title="logout"
|
||||||
></a>
|
></a>
|
||||||
<UserFlags/>
|
<UserFlags v-if="isAdherent"/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@ export default {
|
||||||
...mapState({
|
...mapState({
|
||||||
mail: state => state.User.mail,
|
mail: state => state.User.mail,
|
||||||
isAdmin: state => state.User.isAdmin,
|
isAdmin: state => state.User.isAdmin,
|
||||||
|
isAdherent: state => state.User.isAdherent,
|
||||||
flags: state => state.User.flags
|
flags: state => state.User.flags
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue