()
| 708 | } |
| 709 | |
| 710 | func DeleteDisabledChannel() (int64, error) { |
| 711 | result := DB.Where("status = ? or status = ?", common.ChannelStatusAutoDisabled, common.ChannelStatusManuallyDisabled).Delete(&Channel{}) |
| 712 | return result.RowsAffected, result.Error |
| 713 | } |
| 714 | |
| 715 | func GetPaginatedTags(offset int, limit int) ([]*string, error) { |
| 716 | var tags []*string |
no test coverage detected