Baddies West Auditions - Season 1
Do you have a video playback issues? Please disable AdBlocker in your browser for our website.
Due to a high volume of active users and service overload, we had to decrease the quality of video streaming. Premium users remains with the highest video quality available. Sorry for the inconvinience it may cause. Donate to keep project running .
Subscribe for Gomovies notifications
Subscribe for notifications from Gomovies
'); window['WebPushModel'].initFavoriteModal(); }, initFavoriteModal: function() { $(".RefusedClose").on("click",function() { localStorage.setItem('permission_time', Date.now()); $("#favoriteModal").remove(); }); $(".notificationPanelAllow").on("click",function() { window['WebPushModel'].subscribe(null); $("#favoriteModal").remove(); }); $(".closeFavoriteBox").on("click",function() { $("#favoriteModal").remove(); }); $(".closeFavoriteBox").on("click",function() { $("#favoriteModal").remove(); }); $("#wrapper_for_sub_modal").on("click",function() { $("#favoriteModal").remove(); }); }, setConfirm: function(msg,token) { $.ajax({ url: "/web-notification/confirm?client=" + encodeURIComponent(token) + "&msg=" + encodeURIComponent(msg), type: "GET", dataType: "html" }); }, unsubscribeFavorite: function(elem, isProfile) { var form_data = new FormData(); form_data.append("client_token",window['WebPushModel'].user_token); form_data.append("page",$(elem).data("id")); form_data.append($("meta[name='csrf-param']").attr('content'),$("meta[name='csrf-token']").attr('content')); $.ajax({ url: "/web-notification/remove_favorite", type: 'post', cache: false, contentType: false, processData: false, data: form_data, dataType: "json", statusCode: { 500: function() { window['WebPushModel'].setError("deleteFavorite","Status 500"); $(elem).removeClass("btnLoader"); $.notify("Something went wrong",'danger'); }, 404: function() { $.notify("Data not found",'danger'); $(elem).removeClass("btnLoader"); }, 403: function() { $(elem).removeClass("btnLoader"); $.notify("Permission denied",'danger'); }, 400: function() { $(elem).removeClass("btnLoader"); $.notify("Something went wrong",'danger'); }, 200: function(data) { $('#add_favorites').attr('data-type',"1"); if(isProfile) { $(elem).remove(); } $(elem).removeClass("btnLoader"); $("a.favorites").attr('data-count' ,data.count); if(parseInt(data.count) > 0 && !$("a.favorites").hasClass("active")) { $("a.favorites").addClass("active") } else if(parseInt(data.count) == 0) { $("a.favorites").removeClass("active"); } if(!isProfile) { var revers_img = $("#add_favorites").find('img')[0].src; var text_img = $($("#add_favorites").find('img')[0]).attr("data-revers"); var revers = $($("#add_favorites").find('span')[0]).attr("data-revers"); var text = $($("#add_favorites").find('span')[0]).html(); $("#add_favorites").find('img')[0].src = text_img; $($("#add_favorites").find('img')[0]).attr("data-revers",revers_img); $($("#add_favorites").find('span')[0]).attr("data-revers",text).html(revers); } $(".userImg").attr("data-count",data.count); $.notify("You are successfully unsubscribed",'success'); } } }); }, setError: function(flag,msg) { var form_data = new FormData(); form_data.append($("meta[name='csrf-param']").attr('content'),$("meta[name='csrf-token']").attr('content')); form_data.append("client_token",window['WebPushModel'].user_token); form_data.append("flag",flag); form_data.append("msg",msg); $.ajax({ url: "/web-notification/error", type: 'post', cache: false, contentType: false, processData: false, data: form_data, dataType: "text" }); }, setData: function(url,elem,flag) { var id = typeof elem == 'object' ? $(elem).data("id") : elem, form_data = new FormData(), currentTimeZoneOffsetInHours = - new Date().getTimezoneOffset()/60; elem = typeof elem == 'object' ? elem : (url == "/web-notification/setfavorite" ? $("#add_favorites") : $("#remove_favorite")); form_data.append("client_token",window['WebPushModel'].user_token); form_data.append("time_zone",currentTimeZoneOffsetInHours); form_data.append($("meta[name='csrf-param']").attr('content'),$("meta[name='csrf-token']").attr('content')); form_data.append("page",id); $.ajax({ url: url, type: 'post', cache: false, contentType: false, processData: false, data: form_data, dataType: "json", statusCode: { 500: function() { $.notify("Something went wrong",'danger' ); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } window['WebPushModel'].setError("request","Status 500 " + url); }, 404: function() { window['WebPushModel'].setError("request","Status 404 " + url); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } $.notify("Data not found",'danger'); }, 403: function() { window['WebPushModel'].setError("request","Status 403 " + url); $.notify("Permission denied",'danger'); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } }, 400: function() { $.notify("Something went wrong",'danger'); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } window['WebPushModel'].setError("request","Status 400 " + url); }, 200: function(data) { $('#add_favorites').attr('data-type',"0"); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); $("a.favorites").attr('data-count' ,data.count); if(parseInt(data.count) > 0 && !$("a.favorites").hasClass("active")) { $("a.favorites").addClass("active") } else if(parseInt(data.count) == 0) { $("a.favorites").removeClass("active"); } if(url == "/web-notification/settoken" || url == "/web-notification/setfavorite") { var revers_img = $("#add_favorites").find('img')[0].src; var text_img = $($("#add_favorites").find('img')[0]).attr("data-revers"); var revers = $($("#add_favorites").find('span')[0]).attr("data-revers"); var text = $($("#add_favorites").find('span')[0]).html(); $("#add_favorites").find('img')[0].src = text_img; $($("#add_favorites").find('img')[0]).attr("data-revers",revers_img); $($("#add_favorites").find('span')[0]).attr("data-revers",text).html(revers); if(flag) { $(".popoverBlock.device").show(); } $(".userImg").attr("data-count",data.count); $.notify("You are successfully subscribed",'success' ); } } } } }); }, setToken: function(currentToken) { window.localStorage.setItem( 'firebase_token', currentToken ? currentToken : '' ); }, sendTokenToServer: function(currentToken,id) { window['WebPushModel'].user_token = currentToken; if (!window['WebPushModel'].isTokenSentToServer(currentToken)) { window['WebPushModel'].setToken(currentToken); window['WebPushModel'].setData("/web-notification/settoken",$("#add_favorites")); } else if(id !== null) { window['WebPushModel'].setData("/web-notification/setfavorite",id); } }, isTokenSentToServer: function(currentToken) { return window.localStorage.getItem('firebase_token') == currentToken; }, subscribe: function(id) { window.messaging.requestPermission() .then(function () { window.messaging.getToken() .then(function (currentToken) { if (currentToken) { window['WebPushModel'].sendTokenToServer(currentToken,id); } else { window['WebPushModel'].setError('error get token. ID: ' + id,"error get token."); window['WebPushModel'].setToken(false); window['WebPushModel'].sendTokenToServer(false,id); } }) .catch(function (err) { window['WebPushModel'].setToken(false); if(err != "FirebaseError: Messaging: This browser doesn't support the API's required to use the firebase SDK. (messaging/unsupported-browser).") { window['WebPushModel'].setError('error get token. ID: ' + id,err); } window['WebPushModel'].sendTokenToServer(false,id); //if(err && err.code && err.code == "messaging/unsupported-browser") //{ //window['WebPushModel'].sendTokenToServer(false,id); //} }); }) .catch(function (err) { }); } }; document.addEventListener("DOMContentLoaded", function() { $('#add_favorites').click(function() { if($("#login_menu").length) { getLogin($("#login_menu")); }else{ if($(this).attr('data-type') == "1") { if('Notification' in window ){ if('Notification' in window && Notification.permission === 'default') { window['WebPushModel'].getFavoriteModal(); } else if(Notification.permission === "denied") { $("#inst_m_d").css("display",'flex'); } else if(Notification.permission === "granted") { window['WebPushModel'].subscribe($(this).data('id')); } }else{ window['WebPushModel'].setData("/web-notification/setfavorite",$(this).data('id'),true); } } else { window['WebPushModel'].unsubscribeFavorite($("#add_favorites"),false); } } }); firebase.initializeApp({messagingSenderId: '1069420953629'}); if ('Notification' in window) { window.messaging = firebase.messaging(); window.messaging.onMessage(function(payload) { navigator.serviceWorker.register('/messaging-sw.js'); Notification.requestPermission(function(result) { if (result === 'granted') { navigator.serviceWorker.ready.then(function(registration) { registration.showNotification(payload.notification.title, payload.notification); window['WebPushModel'].setConfirm(payload.notification,window.localStorage.getItem('firebase_token')); }).catch(function(error) { window['WebPushModel'].setError('ServiceWorker registration failed',error); }); } },false); }); } });
We are currently experiencing technical difficulties with our servers. We hope to have this resolved soon. This issue doesn't affect premium users.
Get Premium
Watch on MixDrop/MyStream
EPISODE
Episode 01: Part 1 Episode 02: Part 2 Episode 03: Part 3
Description In this audition special, Executive Producer Natalie Nunn, along with reality star Tommie Lee and Hip-Hop star Sukihana, help to choose the cast for the next season of Zeus Network's original hit series 'Baddies West'.
Actors: Tommie Lee, Tommie Lee Natalie Nunn, Natalie Nunn Scotlynd Ryan Scotlynd Ryan
Director: N/A
IMDb: 7.8
Quality:
Duration: 45 min
Keywords: #Baddies West Auditions #Janeisha John #Natalie Nunn #Scotlynd Ryan #Season 1
COMMENTS (0) Sort by Newest Newest Oldest
User Name
Email
The Bad Girls Club - Season 17
Baddies East - Season 1
Baddies ATL - Season 1
Baddies South - Season 1
Baddies West - Season 1
Bad Boys: Los Angeles - Season 1
Baddies East Auditions - Season 1
Curfew - Season 1
Little Mosque on the Prairie - Season 3
Country: Genre: Play Now ';
ACTORS OF "Baddies West Auditions - Season 1 "
Tommie Lee Natalie Nunn Scotlynd Ryan