Select the types of activity you want to include in your feed.
1// Copyright 2016 The Gogs Authors. All rights reserved. 2// SPDX-License-Identifier: MIT 3 4package structs 5 6// AddOrgMembershipOption add user to organization options 7type AddOrgMembershipOption struct { 8 Role string `json:"role" binding:"Required"` 9}