Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newGroupInfo (0.22 sec)

  1. cmd/iam-store.go

    type GroupInfo struct {
    	Version   int       `json:"version"`
    	Status    string    `json:"status"`
    	Members   []string  `json:"members"`
    	UpdatedAt time.Time `json:"updatedAt,omitempty"`
    }
    
    func newGroupInfo(members []string) GroupInfo {
    	return GroupInfo{Version: 1, Status: statusEnabled, Members: members, UpdatedAt: UTCNow()}
    }
    
    // MappedPolicy represents a policy name mapped to a user or group
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 74.4K bytes
    - Viewed (2)
Back to top