mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			380 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			380 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package models
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/json"
 | 
						|
	"github.com/TeaOSLab/EdgeAPI/internal/remotelogs"
 | 
						|
)
 | 
						|
 | 
						|
// DecodeModules 解析模块
 | 
						|
func (this *User) DecodeModules() []string {
 | 
						|
	if len(this.Modules) == 0 {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	var result = []string{}
 | 
						|
	err := json.Unmarshal(this.Modules, &result)
 | 
						|
	if err != nil {
 | 
						|
		remotelogs.Error("User.DecodeModules", err.Error())
 | 
						|
	}
 | 
						|
 | 
						|
	return result
 | 
						|
}
 |